Fix personal widget ordering (again) (#787)

Fixes #766 (second attempt).

Signed-off-by: Yannick Schaus <github@schaus.net>
pull/790/head
Yannick Schaus 2021-01-11 12:15:51 +01:00 committed by GitHub
parent 0f5f995686
commit 0c915431ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 () {