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:
parent
9ba541574a
commit
97f6731140
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user