1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

changed order for feature toggles.

This commit is contained in:
ivaosthu 2014-12-10 17:13:26 +01:00
parent 832b917954
commit 778b81f1cd

View File

@ -25,7 +25,7 @@ function getFeatures() {
return knex
.select(FEATURE_COLUMNS)
.from('features')
.orderBy('created_at', 'desc')
.orderBy('name', 'asc')
.map(rowToFeature);
}