From 2121155dd00252565732d76a0186e67f47617845 Mon Sep 17 00:00:00 2001 From: Brendon Duncan Date: Fri, 13 Jul 2018 17:18:41 +1200 Subject: [PATCH] When pasting from clipboard using the button on send screen, the text now appears the first time. --- src/js/controllers/tab-send.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/js/controllers/tab-send.js b/src/js/controllers/tab-send.js index 00328d5db..bcaaaef5c 100644 --- a/src/js/controllers/tab-send.js +++ b/src/js/controllers/tab-send.js @@ -25,7 +25,9 @@ angular.module('copayApp.controllers').controller('tabSendController', function( $scope.pasteClipboard = function() { if ($scope.clipboardHasAddress || $scope.clipboardHasContent) { clipboardService.readFromClipboard(function(text) { - $scope.formData.search = text; + $scope.$apply(function() { + $scope.formData.search = text; + }); $scope.findContact($scope.formData.search); }); }