You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ak...@apache.org on 2016/02/17 10:31:00 UTC

[7/8] ignite git commit: IGNITE-843 Fixed index sort direction on import.

IGNITE-843 Fixed index sort direction on import.


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

Branch: refs/heads/ignite-843-rc3
Commit: 280d06b24a2746cc059aa270bb4bcc739485ebe4
Parents: facec3a
Author: vsisko <vs...@gridgain.com>
Authored: Wed Feb 17 16:16:13 2016 +0700
Committer: Alexey Kuznetsov <ak...@apache.org>
Committed: Wed Feb 17 16:16:13 2016 +0700

----------------------------------------------------------------------
 .../src/main/js/controllers/domains-controller.js                  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/280d06b2/modules/control-center-web/src/main/js/controllers/domains-controller.js
----------------------------------------------------------------------
diff --git a/modules/control-center-web/src/main/js/controllers/domains-controller.js b/modules/control-center-web/src/main/js/controllers/domains-controller.js
index cc108bc..d3b29ea 100644
--- a/modules/control-center-web/src/main/js/controllers/domains-controller.js
+++ b/modules/control-center-web/src/main/js/controllers/domains-controller.js
@@ -857,7 +857,7 @@ consoleModule.controller('domainsController', function ($filter, $http, $timeout
                                 name: idx.name, indexType: 'SORTED', fields: _.map(fields, function (fieldName) {
                                     return {
                                         name: toJavaName(fieldName),
-                                        direction: !idx.fields[fieldName]
+                                        direction: idx.fields[fieldName]
                                     };
                                 })
                             });