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

Strategy list should be sorted by name

This commit is contained in:
ivaosthu 2016-12-10 12:12:00 +01:00
parent b62ee42c9a
commit 70c2078539

View File

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