From 4e53e74f6df02b12323310c0c6906630c806fb3c Mon Sep 17 00:00:00 2001 From: Viicos <65306057+Viicos@users.noreply.github.com> Date: Mon, 3 Jun 2024 15:07:01 +0200 Subject: [PATCH] Update `monaco-editor` to `0.49.0` --- src/jsonEditor.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jsonEditor.tsx b/src/jsonEditor.tsx index ac7a78c..e11d3dd 100644 --- a/src/jsonEditor.tsx +++ b/src/jsonEditor.tsx @@ -5,7 +5,7 @@ import type {EditorProps, OnChange, OnMount} from '@monaco-editor/react'; // which doesn't play well (especially with Storybook). // See https://www.npmjs.com/package/@monaco-editor/loader#configure-the-loader-to-load-the-monaco-as-an-npm-package // if we ever want to switch to the NPM module instead. -loader.config({paths: {vs: 'https://cdn.jsdelivr.net/npm/monaco-editor@0.48.0/min/vs'}}); +loader.config({paths: {vs: 'https://cdn.jsdelivr.net/npm/monaco-editor@0.49.0/min/vs'}}); interface JSONEditorProps { value?: any;