fix: make labels in dialog deletable

Signed-off-by: grnd-alt <github@belakkaf.net>
This commit is contained in:
grnd-alt
2025-07-29 10:39:39 +02:00
parent 85bb603103
commit 1c1e3e944e

View File

@@ -280,7 +280,7 @@ export default {
this.card.labels.push(label)
},
onRemoveLabel(removedLabel) {
this.card.labels = this.card.label.filter(label => label.id !== removedLabel.id)
this.card.labels = this.card.labels.filter(label => label.id !== removedLabel.id)
},
onSelectUser(user) {
this.card.assignedUsers.push(user)