1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

fix: Application list should be alphabetically sorted

closes #403
This commit is contained in:
ivaosthu 2019-03-13 08:56:02 +01:00 committed by Ivar Conradi Østhus
parent 714dd107ac
commit f5d4f618ae
2 changed files with 4 additions and 1 deletions

View File

@ -1,9 +1,11 @@
# Changelog
## Next
- fix: Metrics poller should start even if inital fetch fails.
- fix: SimpleAuthentication should work with custom basePaths
- fix: Add explicit endpoints for toggle on/off
- fix: Add explicit endpoints for toggle on/off
- fix: Application list should be alphabetically sorted
## 3.2.2

View File

@ -70,6 +70,7 @@ class ClientApplicationsDb {
return this.db
.select(COLUMNS)
.from(TABLE)
.orderBy('app_name', 'asc')
.map(mapRow);
}