diff --git a/web/ui/react-app/src/pages/graph/CMExpressionInput.tsx b/web/ui/react-app/src/pages/graph/CMExpressionInput.tsx index 644760f8d..668d2f6fd 100644 --- a/web/ui/react-app/src/pages/graph/CMExpressionInput.tsx +++ b/web/ui/react-app/src/pages/graph/CMExpressionInput.tsx @@ -8,7 +8,7 @@ import { history, historyKeymap } from '@codemirror/history'; import { defaultKeymap, insertNewlineAndIndent } from '@codemirror/commands'; import { bracketMatching } from '@codemirror/matchbrackets'; import { closeBrackets, closeBracketsKeymap } from '@codemirror/closebrackets'; -import { searchKeymap, highlightSelectionMatches } from '@codemirror/search'; +import { highlightSelectionMatches } from '@codemirror/search'; import { commentKeymap } from '@codemirror/comment'; import { lintKeymap } from '@codemirror/lint'; import { PromQLExtension, CompleteStrategy } from 'codemirror-promql'; @@ -139,7 +139,6 @@ const CMExpressionInput: FC = ({ keymap.of([ ...closeBracketsKeymap, ...defaultKeymap, - ...searchKeymap, ...historyKeymap, ...commentKeymap, ...completionKeymap,