Skip to content

Commit 3fc9551

Browse files
authored
Merge pull request #3 from openbootdotdev/claude/fix-raw-mode-errors-flYFt
Mark config as changed when entering raw mode
2 parents 0229700 + 1f04778 commit 3fc9551

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/components/ConfigEditor.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
});
3636
}
3737
38-
const hasChanges = $derived(isNew || initialSnapshot === '' || captureSnapshot() !== initialSnapshot);
38+
const hasChanges = $derived(isNew || initialSnapshot === '' || rawMode || captureSnapshot() !== initialSnapshot);
3939
let showScriptModal = $state(false);
4040
let scriptDraft = $state('');
4141

0 commit comments

Comments
 (0)