1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-09 08:17:12 +02:00
This commit is contained in:
Ryan Cramer
2024-03-22 14:33:45 -04:00
parent 38757b1baa
commit 5b257c6031
2 changed files with 2 additions and 2 deletions

View File

@@ -479,7 +479,7 @@ var InputfieldSelector = {
$value.prop('disabled', false); $value.prop('disabled', false);
} }
if(op && op.indexOf('!') === 0 && op !== '!=') { if(op && op.indexOf('!') === 0 && op !== '!=' && op != '!=""') {
fieldPrefix = '!'; fieldPrefix = '!';
op = op.substring(1); op = op.substring(1);
} }

File diff suppressed because one or more lines are too long