@asd20/ui 3.2.625 → 3.2.626
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -64,8 +64,8 @@ export default {
|
|
|
64
64
|
// is always on top
|
|
65
65
|
.sort((a, b) => {
|
|
66
66
|
// if (this.getPreferredLanguageCode().includes(a.code)) return -1 // Move up
|
|
67
|
-
if (a.
|
|
68
|
-
if (a.
|
|
67
|
+
if (a.name < b.name) return -1 // Move up
|
|
68
|
+
if (a.name > b.name) return 1 // Move down
|
|
69
69
|
return 0 // Leave where it is
|
|
70
70
|
})
|
|
71
71
|
)
|