Skip to content

Commit

Permalink
FIO-8389: Fix EditGrid with Empty/Is Not Empty conditional logic in t…
Browse files Browse the repository at this point in the history
…here
  • Loading branch information
mikekotikov committed May 23, 2024
1 parent 513ce03 commit 36bb01e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/operators/IsEmptyValue.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default class IsEmptyValue extends ConditionOperator {

if (instance && instance.root) {
const conditionTriggerComponent = instance.root.getComponent(conditionComponentPath);
return conditionTriggerComponent ? conditionTriggerComponent.isEmpty() : isEmptyValue;
return conditionTriggerComponent?.isEmpty ? conditionTriggerComponent.isEmpty() : isEmptyValue;
}

return isEmptyValue;
Expand Down

0 comments on commit 36bb01e

Please sign in to comment.