mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
Strategy list should be sorted by name
This commit is contained in:
parent
b62ee42c9a
commit
70c2078539
@ -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