From bf7e7e33b2fb1a5875a879f6938ce8c3237117e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Tue, 14 Nov 2023 18:10:32 +0100 Subject: [PATCH] fix: fix copy paste error to bring back label picker MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- src/components/card/TagSelector.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/card/TagSelector.vue b/src/components/card/TagSelector.vue index 323a447b1..b71b21423 100644 --- a/src/components/card/TagSelector.vue +++ b/src/components/card/TagSelector.vue @@ -63,7 +63,7 @@ export default { return [...this.labels].sort((a, b) => (a.title < b.title) ? -1 : 1) }, assignedLabels() { - return [...this.card.labels].local((a, b) => (a.title < b.title) ? -1 : 1) + return [...this.card.labels].sort((a, b) => (a.title < b.title) ? -1 : 1) }, }, methods: {