Skip to content

Commit 2a6b8d7

Browse files
committed
fix instance where deprecated option values were passed
1 parent 9e597ab commit 2a6b8d7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/platform/plugins/shared/workflows_management/public/features/run_workflow/ui/workflow_execute_manual_form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ export const WorkflowExecuteManualForm = ({
210210
formatOnType: true,
211211
quickSuggestions: false,
212212
suggestOnTriggerCharacters: false,
213-
wordBasedSuggestions: false,
213+
wordBasedSuggestions: 'off',
214214
parameterHints: {
215215
enabled: false,
216216
},

src/platform/plugins/shared/workflows_management/public/widgets/workflow_yaml_editor/ui/workflow_yaml_editor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ const editorOptions: monaco.editor.IStandaloneEditorConstructionOptions = {
113113
filterGraceful: true, // Better filtering
114114
localityBonus: true, // Prioritize matches near cursor
115115
},
116-
wordBasedSuggestions: false,
116+
wordBasedSuggestions: 'off',
117117
hover: {
118118
enabled: true,
119119
delay: 300,

x-pack/platform/plugins/shared/streams_app/public/components/data_management/stream_detail_enrichment/doc_viewer_diff.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ function JsonDiffViewer({ hit, decreaseAvailableHeightBy }: DocViewRenderProps)
101101
}
102102
editorRef.current.setModel({ original: oldModel, modified: newModel });
103103
const commonOptions: monaco.editor.IEditorOptions = {
104-
lightbulb: { enabled: false },
104+
lightbulb: { enabled: monaco.editor.ShowLightbulbIconMode.Off },
105105
fontSize: 12,
106106
lineNumbers: 'off',
107107
minimap: { enabled: false },

0 commit comments

Comments
 (0)