@eqproject/eqp-dynamic-module 2.6.8 → 2.6.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/components/private/form-records/add-form-record/add-form-record.component.mjs +5 -5
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +4 -4
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +4 -4
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -5080,19 +5080,19 @@ class AddFormRecordComponent {
|
|
|
5080
5080
|
fireTrigger = false;
|
|
5081
5081
|
return;
|
|
5082
5082
|
}
|
|
5083
|
-
if (logicOperator == LogicOperator['<'] && conditionValue
|
|
5083
|
+
if (logicOperator == LogicOperator['<'] && conditionValue <= recordValue) {
|
|
5084
5084
|
fireTrigger = false;
|
|
5085
5085
|
return;
|
|
5086
5086
|
}
|
|
5087
|
-
if (logicOperator == LogicOperator['<='] && conditionValue
|
|
5087
|
+
if (logicOperator == LogicOperator['<='] && conditionValue < recordValue) {
|
|
5088
5088
|
fireTrigger = false;
|
|
5089
5089
|
return;
|
|
5090
5090
|
}
|
|
5091
|
-
if (logicOperator == LogicOperator['>'] && conditionValue
|
|
5091
|
+
if (logicOperator == LogicOperator['>'] && conditionValue >= recordValue) {
|
|
5092
5092
|
fireTrigger = false;
|
|
5093
5093
|
return;
|
|
5094
5094
|
}
|
|
5095
|
-
if (logicOperator == LogicOperator['>='] && conditionValue
|
|
5095
|
+
if (logicOperator == LogicOperator['>='] && conditionValue > recordValue) {
|
|
5096
5096
|
fireTrigger = false;
|
|
5097
5097
|
return;
|
|
5098
5098
|
}
|