From 7fd6913865b74f60415d0a56002bd33b978c9c81 Mon Sep 17 00:00:00 2001
From: Benoit Lavenier <benoit.lavenier@e-is.pro>
Date: Thu, 26 Dec 2019 11:20:02 +0100
Subject: [PATCH] [fix] Fix help controller for non-member wallet

---
 www/js/controllers/help-controllers.js | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/www/js/controllers/help-controllers.js b/www/js/controllers/help-controllers.js
index baea4ccf4..860dda145 100644
--- a/www/js/controllers/help-controllers.js
+++ b/www/js/controllers/help-controllers.js
@@ -1072,10 +1072,10 @@ function HelpTipController($scope, $state, $window, $ionicSideMenuDelegate, $tim
               bindings: {
                 content: 'HELP.TIP.SETTINGS_CHANGE_UNIT',
                 contentParams: contentParams,
-                icon: {
+                icon: UIUtils.screen.isSmall() ? {
                   position: 'right',
                   style: 'margin-right: 60px'
-                },
+                } : {position: 'center'},
                 hasNext: hasNext
               },
               timeout: 1000
@@ -1105,11 +1105,12 @@ function HelpTipController($scope, $state, $window, $ionicSideMenuDelegate, $tim
     if (csWallet.isLogin()) {
       return $state.go('app.view_wallet')
         .then(function(){
-          return $scope.showHelpTip('helptip-wallet-certifications', {
+          return $scope.showHelpTip('helptip-wallet-pubkey', {
             bindings: {
               content: 'HELP.TIP.END_LOGIN',
               hasNext: false
-            }
+            },
+            timeout: 1200
           });
         });
     }
-- 
GitLab