diff --git a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/DeleteRows.jsx b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/DeleteRows.jsx
index 6078539ec0..a3aa90b4fb 100644
--- a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/DeleteRows.jsx
+++ b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/DeleteRows.jsx
@@ -4,6 +4,7 @@ import { uniqueId } from 'lodash';
import { CodeHinter } from '@/Editor/CodeBuilder/CodeHinter';
import Select from '@/_ui/Select';
import { operators } from '@/TooljetDatabase/constants';
+import { isOperatorOptions } from './util';
export const DeleteRows = React.memo(({ currentState, darkMode }) => {
const { columns, deleteOperationLimitOptionChanged, deleteRowsOptions, handleDeleteRowsOptionsChange } =
@@ -83,15 +84,25 @@ export const DeleteRows = React.memo(({ currentState, darkMode }) => {
/>
- handleValueChange(newValue)}
- />
+ {operator === 'is' ? (
+
+ ) : (
+ handleValueChange(newValue)}
+ />
+ )}
- handleValueChange(newValue)}
- />
+ {operator === 'is' ? (
+
+ ) : (
+ handleValueChange(newValue)}
+ />
+ )}
- handleValueChange(newValue)}
- />
+ {operator === 'is' ? (
+
+ ) : (
+ handleValueChange(newValue)}
+ />
+ )}