+
{{externalSource}}
-
Hardware wallet
diff --git a/src/js/controllers/preferences.js b/src/js/controllers/preferences.js
index c9dceb978..f06efe8e5 100644
--- a/src/js/controllers/preferences.js
+++ b/src/js/controllers/preferences.js
@@ -15,10 +15,14 @@ angular.module('copayApp.controllers').controller('preferencesController',
});
$scope.init = function() {
+ $scope.externalSource = null;
+
fc = profileService.focusedClient;
if (fc) {
$scope.encryptEnabled = walletService.isEncrypted(fc);
- $scope.externalSource = fc.getPrivKeyExternalSourceName() == 'ledger' ? "Ledger" : null;
+ if (fc.isPrivKeyExternal)
+ $scope.externalSource = fc.getPrivKeyExternalSourceName() == 'ledger' ? 'Ledger' : 'Trezor';
+
// TODO externalAccount
//this.externalIndex = fc.getExternalIndex();
}