Skip to content

Commit c2336f9

Browse files
author
Hardiksinh Gohil
committed
Fix: lint warning
1 parent 22181da commit c2336f9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/react-model-ui/src/views/common/SourceObjectConditionDataGrid.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,9 @@ function OperatorEditor(props: OperatorEditorProps): React.ReactElement {
229229
value: currentValue,
230230
editorCallback: (v: string) => {
231231
setCurrentValue(v);
232-
if (editorCallback) editorCallback(v);
232+
if (editorCallback) {
233+
editorCallback(v);
234+
}
233235
},
234236
rowData: options.rowData
235237
}}

0 commit comments

Comments
 (0)