diff --git a/app/components/ComboSelect.vue b/app/components/ComboSelect.vue index 72edaca99..867a95792 100644 --- a/app/components/ComboSelect.vue +++ b/app/components/ComboSelect.vue @@ -86,14 +86,14 @@ import { } from '@headlessui/vue' import { CheckIcon, ChevronUpDownIcon } from '@heroicons/vue/20/solid' -const { options, multiple = false, optionsDisplay = (option: any) => option } = defineProps<{ - modelValue: any - options: ComputedRef> - /** Whether multiple options can be selected */ - multiple?: boolean - /** Function called for getting the display string for a given option */ - optionsDisplay?: (option: any) => string -}>() +const { options, multiple, optionsDisplay = (option: any) => option} = defineProps<{ + modelValue: any + options: ComputedRef> + /** Whether multiple options can be selected */ + multiple?: boolean + /** Function called for getting the display string for a given option */ + optionsDisplay?: (option: any) => string + }>() const query = ref('') const filteredOptions = computed(() => diff --git a/app/components/app_footer/index.vue b/app/components/app_footer/index.vue index 4e2f840e9..4605e8bed 100644 --- a/app/components/app_footer/index.vue +++ b/app/components/app_footer/index.vue @@ -29,7 +29,6 @@