From 2ec7f372e327bb04ab1bcc7d9f1747132259db54 Mon Sep 17 00:00:00 2001
From: Benoit Lavenier <benoit.lavenier@e-is.pro>
Date: Tue, 31 Dec 2019 11:35:10 +0100
Subject: [PATCH] [fix] Wallet (secondary): fix show certification link (for
 large screen)

---
 www/js/controllers/wallet-controllers.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www/js/controllers/wallet-controllers.js b/www/js/controllers/wallet-controllers.js
index c2143bd4..9a5b5b0e 100644
--- a/www/js/controllers/wallet-controllers.js
+++ b/www/js/controllers/wallet-controllers.js
@@ -494,7 +494,7 @@ function WalletController($scope, $rootScope, $q, $ionicPopup, $timeout, $state,
       });
     }
     else {
-      $state.go(UIUtils.screen.isSmall() ? 'app.wallet_cert_by_id' : 'app.wallet_cert_by_id_lg', {
+      $state.go(UIUtils.screen.isSmall() ? 'app.wallet_cert_by_id' : 'app.wallet_cert_lg_by_id', {
         id: $scope.walletId,
         type: 'received'
       });
@@ -509,7 +509,7 @@ function WalletController($scope, $rootScope, $q, $ionicPopup, $timeout, $state,
       });
     }
     else {
-      $state.go(UIUtils.screen.isSmall() ? 'app.wallet_cert_by_id' : 'app.wallet_cert_by_id_lg', {
+      $state.go(UIUtils.screen.isSmall() ? 'app.wallet_cert_by_id' : 'app.wallet_cert_lg_by_id', {
         id: $scope.walletId,
         type: 'given'
       });
-- 
GitLab