diff --git a/lib/db/strategy-store.js b/lib/db/strategy-store.js index e1df0d2c5a..ca6ad9c2b3 100644 --- a/lib/db/strategy-store.js +++ b/lib/db/strategy-store.js @@ -24,7 +24,7 @@ class StrategyStore { return this.db .select(STRATEGY_COLUMNS) .from(TABLE) - .orderBy('created_at', 'asc') + .orderBy('name', 'asc') .map(this.rowToStrategy); }