Fix personal widget ordering (again) (#787)
Fixes #766 (second attempt). Signed-off-by: Yannick Schaus <github@schaus.net>pull/790/head
parent
0f5f995686
commit
0c915431ec
|
@ -103,7 +103,7 @@ export default {
|
|||
},
|
||||
orderedPersonalWidgets () {
|
||||
return [...this.$store.getters.widgets].sort((a, b) => {
|
||||
return a.name.localeCompare(b.name)
|
||||
return a.uid.localeCompare(b.uid)
|
||||
})
|
||||
},
|
||||
configDescriptions () {
|
||||
|
|
Loading…
Reference in New Issue