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:
Md Afiq Iskandar 2025-07-25 10:12:05 +08:00
parent 6009b1ecbe
commit 82ff3ecfc3
2 changed files with 4 additions and 1008 deletions

File diff suppressed because it is too large Load Diff

View File

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