From 70c207853961cd187c85cdbcd8492393bf081cf8 Mon Sep 17 00:00:00 2001 From: ivaosthu Date: Sat, 10 Dec 2016 12:12:00 +0100 Subject: [PATCH] Strategy list should be sorted by name --- lib/db/strategy-store.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }