You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ag...@apache.org on 2017/11/01 09:55:35 UTC

[05/19] ignite git commit: IGNITE-6789 Web Console: Reworked sorting of caches on Queries screen.

IGNITE-6789 Web Console: Reworked sorting of caches on Queries screen.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/1d39507f
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/1d39507f
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/1d39507f

Branch: refs/heads/ignite-6778
Commit: 1d39507ff0051588885908aefa209829412a4f52
Parents: b4bd20e
Author: Alexey Kuznetsov <ak...@apache.org>
Authored: Mon Oct 30 19:21:15 2017 +0700
Committer: Alexey Kuznetsov <ak...@apache.org>
Committed: Mon Oct 30 19:21:15 2017 +0700

----------------------------------------------------------------------
 modules/web-console/frontend/app/modules/sql/sql.controller.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/1d39507f/modules/web-console/frontend/app/modules/sql/sql.controller.js
----------------------------------------------------------------------
diff --git a/modules/web-console/frontend/app/modules/sql/sql.controller.js b/modules/web-console/frontend/app/modules/sql/sql.controller.js
index a3fc0ca..332d4d2 100644
--- a/modules/web-console/frontend/app/modules/sql/sql.controller.js
+++ b/modules/web-console/frontend/app/modules/sql/sql.controller.js
@@ -864,7 +864,7 @@ export default ['$rootScope', '$scope', '$http', '$q', '$timeout', '$interval',
                         });
 
                         return cachesAcc;
-                    }, []), 'label');
+                    }, []), (cache) => cache.label.toLowerCase());
 
                     // Reset to first cache in case of stopped selected.
                     const cacheNames = _.map($scope.caches, (cache) => cache.value);