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-6748 Commit: 1d39507ff0051588885908aefa209829412a4f52 Parents: b4bd20e Author: Alexey Kuznetsov <[email protected]> Authored: Mon Oct 30 19:21:15 2017 +0700 Committer: Alexey Kuznetsov <[email protected]> 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);
