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.
This commit is contained in:
parent
68ae2a6f91
commit
c4802a5724
1 changed files with 1 additions and 0 deletions
|
|
@ -119,6 +119,7 @@ angular.module('copayApp.controllers').controller('txDetailsController', functio
|
||||||
$log.debug('Could not save tx comment ' + err);
|
$log.debug('Could not save tx comment ' + err);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
$scope.$apply();
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue