mirror of
https://github.com/Kingsrook/qqq-frontend-material-dashboard.git
synced 2025-07-18 05:10:45 +00:00
Switch to use NOT_EQUALS_OR_IS_NULL instead of NOT_EQUALS
This commit is contained in:
@ -65,7 +65,7 @@ class FilterUtils
|
||||
return QCriteriaOperator.EQUALS;
|
||||
case "isNot":
|
||||
case "!=":
|
||||
return QCriteriaOperator.NOT_EQUALS;
|
||||
return QCriteriaOperator.NOT_EQUALS_OR_IS_NULL;
|
||||
case "after":
|
||||
case ">":
|
||||
return QCriteriaOperator.GREATER_THAN;
|
||||
@ -138,6 +138,7 @@ class FilterUtils
|
||||
return ("is");
|
||||
}
|
||||
case QCriteriaOperator.NOT_EQUALS:
|
||||
case QCriteriaOperator.NOT_EQUALS_OR_IS_NULL:
|
||||
|
||||
if (field.possibleValueSourceName)
|
||||
{
|
||||
|
Reference in New Issue
Block a user