From c37a58032f04369b9f3743b72bfb263b8663d3f4 Mon Sep 17 00:00:00 2001 From: Sjors Provoost Date: Thu, 11 Feb 2016 12:02:54 +0000 Subject: [PATCH] fix(Addresses): modal didn't open because #307 --- assets/js/directives/imported-address.directive.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/assets/js/directives/imported-address.directive.js b/assets/js/directives/imported-address.directive.js index 1a4e4b37cf..c78bd7737f 100644 --- a/assets/js/directives/imported-address.directive.js +++ b/assets/js/directives/imported-address.directive.js @@ -17,7 +17,8 @@ angular.module('walletApp').directive('importedAddress', (Wallet, $translate, $u controller: "RequestCtrl", resolve: { destination: () => scope.address, - focus: () => true + focus: () => true, + hasLegacyAddress: () => null }, windowClass: "bc-modal" });