Commit 0ddc022f by pratik pandey Committed by Madhan Neethiraj

ATLAS-2281: UI fix to address error in saving tag/type attribute filter queries…

ATLAS-2281: UI fix to address error in saving tag/type attribute filter queries with null/not-null filters Signed-off-by: 's avatarMadhan Neethiraj <madhan@apache.org> (cherry picked from commit 348d5fe19db9933b11f3c09d5c31cd2e1a8ec57d)
parent dae1dd9d
......@@ -428,6 +428,10 @@ define(['require', 'utils/Utils', 'modules/Modal', 'utils/Messages', 'utils/Enum
return "ends_with";
} else if (oper == "contains") {
return "contains";
} else if (oper == "notNull") {
return "not_null";
} else if (oper == "isNull") {
return "is_null";
}
return oper;
}
......@@ -492,6 +496,10 @@ define(['require', 'utils/Utils', 'modules/Modal', 'utils/Messages', 'utils/Enum
return "endsWith";
} else if (oper == "contains") {
return "contains";
} else if (oper == "not_null") {
return "notNull";
} else if (oper == "is_null") {
return "isNull";
}
return oper;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment