fix: fix copy paste error to bring back label picker
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
@@ -63,7 +63,7 @@ export default {
|
|||||||
return [...this.labels].sort((a, b) => (a.title < b.title) ? -1 : 1)
|
return [...this.labels].sort((a, b) => (a.title < b.title) ? -1 : 1)
|
||||||
},
|
},
|
||||||
assignedLabels() {
|
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: {
|
methods: {
|
||||||
|
|||||||
Reference in New Issue
Block a user