Skip to content

Commit

Permalink
MID-9659: fix filter for dead shadow search item when value is 'undef…
Browse files Browse the repository at this point in the history
…ined'
  • Loading branch information
skublik committed Apr 30, 2024
1 parent cc39d51 commit ae54c94
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public DeadShadowSearchItemWrapper(List<DisplayableValue<Boolean>> availableValu
@Override
public ObjectFilter createFilter(Class type, PageBase pageBase, VariablesMap variables) {
DisplayableValue<Boolean> selectedValue = getValue();
if (selectedValue == null) {
if (selectedValue == null || selectedValue.getValue() == null) {
return null;
}
Boolean value = selectedValue.getValue();
Expand Down

0 comments on commit ae54c94

Please sign in to comment.