This is an automated email from the ASF dual-hosted git repository.

andreapatricelli pushed a commit to branch 2_1_X
in repository https://gitbox.apache.org/repos/asf/syncope.git


The following commit(s) were added to refs/heads/2_1_X by this push:
     new 99fdece  fixed Requests step position in breadcrumb
99fdece is described below

commit 99fdecee0e27b9eb5d279e3f7376f102e09231ad
Author: Andrea Patricelli <[email protected]>
AuthorDate: Thu Jun 6 13:00:37 2019 +0200

    fixed Requests step position in breadcrumb
---
 client/enduser/src/main/resources/META-INF/resources/app/js/app.js | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/client/enduser/src/main/resources/META-INF/resources/app/js/app.js 
b/client/enduser/src/main/resources/META-INF/resources/app/js/app.js
index 5b67897..f9c5fe7 100644
--- a/client/enduser/src/main/resources/META-INF/resources/app/js/app.js
+++ b/client/enduser/src/main/resources/META-INF/resources/app/js/app.js
@@ -444,9 +444,12 @@ app.controller('ApplicationController', ['$scope', 
'$rootScope', 'InfoService',
                     $scope.wizard = response.wizard.steps;
                     $scope.creationWizard = $scope.clone($scope.wizard);
                     /* <Extensions> */
+                    var finish = $scope.wizard.finish;
+                    delete $scope.wizard['finish'];
                     $scope.wizard.userRequests = {
                       "url": "/user-requests"
                     };
+                    $scope.wizard.finish = finish;
                     /* </Extensions> */
                     $scope.wizardFirstStep = response.wizard.firstStep;
 

Reply via email to