From 4b34dbba886dff3197a206683cfe0e4281c6fd87 Mon Sep 17 00:00:00 2001 From: Gustavo Maximiliano Cortez Date: Tue, 30 Sep 2014 10:35:15 -0300 Subject: [PATCH] Update form validation after qr-scan (join) --- js/controllers/join.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/controllers/join.js b/js/controllers/join.js index 25a3e5dca..fffd2e86b 100644 --- a/js/controllers/join.js +++ b/js/controllers/join.js @@ -62,6 +62,8 @@ angular.module('copayApp.controllers').controller('JoinController', $scope.$apply(function() { $scope.connectionId = data; + $scope.joinForm.connectionId.$setViewValue(data); + $scope.joinForm.connectionId.$render(); }); };