Compare commits

...
Author SHA1 Message Date
Gravy Boat fe64a15033 fix: keybind structuredClone only working the first time 2026-07-10 18:26:31 -02:30
@@ -25,7 +25,7 @@ const props = defineProps<{
}>()
const keybinding = useTemplateRef('keybinding')
const definitions = ref(structuredClone(props.definitions))
const definitions = ref(JSON.parse(JSON.stringify(props.definitions)))
const editing = ref(-1)
function startEditing(index: number) {