diff --git a/frontend/src/components/input/filter/FilterCommandsList.vue b/frontend/src/components/input/filter/FilterCommandsList.vue
index 0a30f93b7..fe1348bd4 100644
--- a/frontend/src/components/input/filter/FilterCommandsList.vue
+++ b/frontend/src/components/input/filter/FilterCommandsList.vue
@@ -12,7 +12,6 @@
-
+
(), {
- clickable: true,
+ clickable: false,
})
const {getLabelStyles} = useLabelStyles()
diff --git a/frontend/src/components/tasks/partials/Labels.vue b/frontend/src/components/tasks/partials/Labels.vue
index 55332c233..86c3629d7 100644
--- a/frontend/src/components/tasks/partials/Labels.vue
+++ b/frontend/src/components/tasks/partials/Labels.vue
@@ -4,6 +4,7 @@
v-for="label in displayLabels"
:key="label.id"
:label="label"
+ :clickable="true"
/>
diff --git a/frontend/src/i18n/lang/en.json b/frontend/src/i18n/lang/en.json
index 36f0829dd..32422963b 100644
--- a/frontend/src/i18n/lang/en.json
+++ b/frontend/src/i18n/lang/en.json
@@ -808,7 +808,7 @@
"fromuntil": "Tasks from {from} until {until}",
"select": "Select a date range",
"noTasks": "Nothing to do — Have a nice day!",
- "filterByLabel": "Filtering by label"
+ "filterByLabel": "Filtering by label: {label}"
},
"detail": {
"chooseDueDate": "Click here to set a due date",
diff --git a/frontend/src/views/Home.vue b/frontend/src/views/Home.vue
index 530e3dabe..98cd1a1ce 100644
--- a/frontend/src/views/Home.vue
+++ b/frontend/src/views/Home.vue
@@ -41,13 +41,14 @@
:label-ids="labelIds"
class="show-tasks"
@tasksLoaded="tasksLoaded = true"
+ @clearLabelFilter="handleClearLabelFilter"
/>