diff --git a/apps/frontend/src/components/ui/moderation/checklist/ChecklistKeybind.vue b/apps/frontend/src/components/ui/moderation/checklist/ChecklistKeybind.vue index be2e13e1d0..5ad60c0fa4 100644 --- a/apps/frontend/src/components/ui/moderation/checklist/ChecklistKeybind.vue +++ b/apps/frontend/src/components/ui/moderation/checklist/ChecklistKeybind.vue @@ -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) {