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 2017/08/21 12:35:02 UTC

ignite git commit: IGNITE-4728 Fixed get params for saved state.

Repository: ignite
Updated Branches:
  refs/heads/master e678c810f -> 97b3cef37


IGNITE-4728 Fixed get params for saved state.


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

Branch: refs/heads/master
Commit: 97b3cef378820b7496568ae885c9ca0b6fcfe56f
Parents: e678c81
Author: Dmitriy Shabalin <ds...@gridgain.com>
Authored: Mon Aug 21 19:34:59 2017 +0700
Committer: Alexey Kuznetsov <ak...@apache.org>
Committed: Mon Aug 21 19:34:59 2017 +0700

----------------------------------------------------------------------
 modules/web-console/frontend/app/app.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/97b3cef3/modules/web-console/frontend/app/app.js
----------------------------------------------------------------------
diff --git a/modules/web-console/frontend/app/app.js b/modules/web-console/frontend/app/app.js
index 8599eb7..f072fc5 100644
--- a/modules/web-console/frontend/app/app.js
+++ b/modules/web-console/frontend/app/app.js
@@ -291,7 +291,8 @@ angular.module('ignite-console', [
 .run(['$transitions', ($transitions) => {
     $transitions.onSuccess({ }, (trans) => {
         try {
-            const {name, params, unsaved} = trans.$to();
+            const {name, unsaved} = trans.$to();
+            const params = trans.params();
 
             if (unsaved)
                 localStorage.removeItem('lastStateChangeSuccess');