mirror of
https://github.com/Kingsrook/qqq-frontend-material-dashboard.git
synced 2025-07-17 21:00:45 +00:00
Switch to use NOT_EQUALS_OR_IS_NULL instead of NOT_EQUALS
This commit is contained in:
@ -6,7 +6,7 @@
|
|||||||
"@auth0/auth0-react": "1.10.2",
|
"@auth0/auth0-react": "1.10.2",
|
||||||
"@emotion/react": "11.7.1",
|
"@emotion/react": "11.7.1",
|
||||||
"@emotion/styled": "11.6.0",
|
"@emotion/styled": "11.6.0",
|
||||||
"@kingsrook/qqq-frontend-core": "1.0.61",
|
"@kingsrook/qqq-frontend-core": "1.0.63",
|
||||||
"@mui/icons-material": "5.4.1",
|
"@mui/icons-material": "5.4.1",
|
||||||
"@mui/material": "5.11.1",
|
"@mui/material": "5.11.1",
|
||||||
"@mui/styles": "5.11.1",
|
"@mui/styles": "5.11.1",
|
||||||
|
@ -65,7 +65,7 @@ class FilterUtils
|
|||||||
return QCriteriaOperator.EQUALS;
|
return QCriteriaOperator.EQUALS;
|
||||||
case "isNot":
|
case "isNot":
|
||||||
case "!=":
|
case "!=":
|
||||||
return QCriteriaOperator.NOT_EQUALS;
|
return QCriteriaOperator.NOT_EQUALS_OR_IS_NULL;
|
||||||
case "after":
|
case "after":
|
||||||
case ">":
|
case ">":
|
||||||
return QCriteriaOperator.GREATER_THAN;
|
return QCriteriaOperator.GREATER_THAN;
|
||||||
@ -138,6 +138,7 @@ class FilterUtils
|
|||||||
return ("is");
|
return ("is");
|
||||||
}
|
}
|
||||||
case QCriteriaOperator.NOT_EQUALS:
|
case QCriteriaOperator.NOT_EQUALS:
|
||||||
|
case QCriteriaOperator.NOT_EQUALS_OR_IS_NULL:
|
||||||
|
|
||||||
if (field.possibleValueSourceName)
|
if (field.possibleValueSourceName)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user