diff --git a/frontend/src/components/project/partials/FilterInput.vue b/frontend/src/components/project/partials/FilterInput.vue index 7fd965711..69872f3d9 100644 --- a/frontend/src/components/project/partials/FilterInput.vue +++ b/frontend/src/components/project/partials/FilterInput.vue @@ -21,13 +21,18 @@ import { LABEL_FIELDS, } from '@/helpers/filters' import {useDebounceFn} from '@vueuse/core' +import {useI18n} from 'vue-i18n' + +const {t} = useI18n() const { modelValue, projectId, + inputLabel = undefined, } = defineProps<{ modelValue: string, projectId?: number, + inputLabel?: string, }>() const emit = defineEmits(['update:modelValue', 'blur']) @@ -246,7 +251,11 @@ const blurDebounced = useDebounceFn(() => emit('blur'), 500)