From 474dec12287e027d4f9d67572c8ef9d2fe017466 Mon Sep 17 00:00:00 2001 From: Jos de Jong Date: Tue, 27 Feb 2024 17:38:24 +0100 Subject: [PATCH] feat: change default value of immutable back to false --- src/lib/components/JSONEditor.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/JSONEditor.svelte b/src/lib/components/JSONEditor.svelte index c7b9d6c3..2c888d27 100644 --- a/src/lib/components/JSONEditor.svelte +++ b/src/lib/components/JSONEditor.svelte @@ -66,7 +66,7 @@ export let content: Content = { text: '' } export let selection: JSONEditorSelection | null = null - export let immutable = true + export let immutable = false export let readOnly = false export let indentation: number | string = 2 export let tabSize = 4