diff --git a/web/src/components/Autocomplete.vue b/web/src/components/Autocomplete.vue index 8f99ed3..0c68a6c 100644 --- a/web/src/components/Autocomplete.vue +++ b/web/src/components/Autocomplete.vue @@ -11,9 +11,9 @@ export interface Suggestion { } const props = defineProps<{ - text: String, - id: String | undefined, - model: String, + text: string, + id: string | undefined, + model: string, type?: string | undefined, }>(); diff --git a/web/src/components/Checkbox.vue b/web/src/components/Checkbox.vue index d1a612e..1429ff2 100644 --- a/web/src/components/Checkbox.vue +++ b/web/src/components/Checkbox.vue @@ -1,5 +1,5 @@