summaryrefslogtreecommitdiff
path: root/packages/client/src/components/form/switch.vue
diff options
context:
space:
mode:
Diffstat (limited to 'packages/client/src/components/form/switch.vue')
-rw-r--r--packages/client/src/components/form/switch.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/client/src/components/form/switch.vue b/packages/client/src/components/form/switch.vue
index b5a30d635c..fadb770aee 100644
--- a/packages/client/src/components/form/switch.vue
+++ b/packages/client/src/components/form/switch.vue
@@ -31,7 +31,7 @@ const props = defineProps<{
}>();
const emit = defineEmits<{
- (e: 'update:modelValue', v: boolean): void;
+ (ev: 'update:modelValue', v: boolean): void;
}>();
let button = $ref<HTMLElement>();