1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-09 00:18:00 +01:00

Strategy list should be sorted by name

This commit is contained in:
ivaosthu 2016-12-10 12:12:00 +01:00 committed by Ivar Conradi Østhus
parent 9ba541574a
commit 97f6731140

View File

@ -24,7 +24,7 @@ class StrategyStore {
return this.db
.select(STRATEGY_COLUMNS)
.from(TABLE)
.orderBy('created_at', 'asc')
.orderBy('name', 'asc')
.map(this.rowToStrategy);
}