mirror of
https://github.com/processwire/processwire.git
synced 2025-08-10 16:54:44 +02:00
Fix issue processwire/processwire-issues#1518
This commit is contained in:
@@ -1106,8 +1106,8 @@ function InputfieldDependencies($target) {
|
||||
var matched = 0;
|
||||
|
||||
switch(operator) {
|
||||
case '=': if(value == conditionValue) matched++; break;
|
||||
case '!=': if(value != conditionValue) matched++; break;
|
||||
case '=': if(value === conditionValue) matched++; break;
|
||||
case '!=': if(value !== conditionValue) matched++; break;
|
||||
case '>': if(value > conditionValue) matched++; break;
|
||||
case '<': if(value < conditionValue) matched++; break;
|
||||
case '>=': if(value >= conditionValue) matched++; break;
|
||||
|
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user