update SideMenu with apps order and changelog
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Simon Vieille 2022-10-27 21:58:14 +02:00
parent f09eda85a6
commit c0b187e55e
2 changed files with 2 additions and 1 deletions

View file

@ -2,6 +2,7 @@
### Added
* use custom app names using 'app.navigation.name' (#148)
* app sorting with all displays (#147)
## 3.1.0
### Added

View file

@ -86,7 +86,7 @@ export default {
let orders = {}
let finalApps = []
Array.from(window.topMenuAppsOrder).forEach((app, order) => {
window.menuAppsOrder.forEach((app, order) => {
orders[app] = order + 1
})