diff --git a/src/components/input/fancycheckbox.vue b/src/components/input/fancycheckbox.vue index 31380bf9f..8c844bd6d 100644 --- a/src/components/input/fancycheckbox.vue +++ b/src/components/input/fancycheckbox.vue @@ -4,8 +4,9 @@ :checked="checked" :disabled="disabled || undefined" :id="checkBoxId" - @change="(event) => updateData(event.target.checked)" - type="checkbox"/> + @change="(event: Event) => updateData((event.target as HTMLInputElement).checked)" + type="checkbox" + />