Remove Corrad ProcessMaker Documentation File
- Deleted the comprehensive user guide for Corrad ProcessMaker, which included sections on introduction, form builder, process builder, and FAQs. - This removal is part of a shift towards more dynamic documentation methods and may be replaced with updated resources in the future.
This commit is contained in:
parent
6009b1ecbe
commit
82ff3ecfc3
File diff suppressed because it is too large
Load Diff
@ -266,16 +266,16 @@ function evaluateCondition(condition, variables) {
|
||||
);
|
||||
break;
|
||||
case 'contains':
|
||||
result = String(variableValue).includes(String(compareValue));
|
||||
result = String(variableValue).toLowerCase().includes(String(compareValue).toLowerCase());
|
||||
break;
|
||||
case 'not_contains':
|
||||
result = !String(variableValue).includes(String(compareValue));
|
||||
result = !String(variableValue).toLowerCase().includes(String(compareValue).toLowerCase());
|
||||
break;
|
||||
case 'starts_with':
|
||||
result = String(variableValue).startsWith(String(compareValue));
|
||||
result = String(variableValue).toLowerCase().startsWith(String(compareValue).toLowerCase());
|
||||
break;
|
||||
case 'ends_with':
|
||||
result = String(variableValue).endsWith(String(compareValue));
|
||||
result = String(variableValue).toLowerCase().endsWith(String(compareValue).toLowerCase());
|
||||
break;
|
||||
case 'regex':
|
||||
try {
|
||||
|
Loading…
x
Reference in New Issue
Block a user