diff --git a/frontend/src/components/tasks/partials/Label.vue b/frontend/src/components/tasks/partials/Label.vue index aa1dd0214..75be536e7 100644 --- a/frontend/src/components/tasks/partials/Label.vue +++ b/frontend/src/components/tasks/partials/Label.vue @@ -2,15 +2,29 @@ import type {ILabel} from '@/modelTypes/ILabel' import {useLabelStyles} from '@/composables/useLabelStyles' -defineProps<{ +const props = withDefaults(defineProps<{ label: ILabel -}>() + clickable?: boolean +}>(), { + clickable: true, +}) const {getLabelStyles} = useLabelStyles()