diff --git a/src/lib/components/ConfigEditor.svelte b/src/lib/components/ConfigEditor.svelte index a16b50e..b8afff7 100644 --- a/src/lib/components/ConfigEditor.svelte +++ b/src/lib/components/ConfigEditor.svelte @@ -35,7 +35,7 @@ }); } - const hasChanges = $derived(isNew || initialSnapshot === '' || captureSnapshot() !== initialSnapshot); + const hasChanges = $derived(isNew || initialSnapshot === '' || rawMode || captureSnapshot() !== initialSnapshot); let showScriptModal = $state(false); let scriptDraft = $state('');