From c4802a57240077241f8d39535f45e415cf0f6ad2 Mon Sep 17 00:00:00 2001 From: Puru Date: Fri, 13 Jan 2017 00:13:54 +0545 Subject: [PATCH] Display updated memo on save Updating a memo isn't displayed to the user on save. User has to perform some action such as re-edit or go back, to see the changes. Added $scope.$apply() to make sure changes are displayed to the user. --- src/js/controllers/tx-details.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/js/controllers/tx-details.js b/src/js/controllers/tx-details.js index 05e54d036..b28063311 100644 --- a/src/js/controllers/tx-details.js +++ b/src/js/controllers/tx-details.js @@ -119,6 +119,7 @@ angular.module('copayApp.controllers').controller('txDetailsController', functio $log.debug('Could not save tx comment ' + err); } }); + $scope.$apply(); }); };