1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-10 16:54:44 +02:00
This commit is contained in:
Ryan Cramer
2023-07-25 09:34:57 -04:00
parent c1a939be0c
commit e81da24679
2 changed files with 3 additions and 3 deletions

View File

@@ -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