Merge pull request #281 from JDonadio/bug/prompt-title

Fix prompt title
This commit is contained in:
Jason Dreyzehner 2016-10-07 11:19:48 -04:00 committed by GitHub
commit 3168a9fda6
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ angular.module('copayApp.controllers').controller('txDetailsController', functio
var opts = {};
if ($scope.btx.note && $scope.btx.note.body) opts.defaultText = $scope.btx.note.body;
popupService.showPrompt(null, gettextCatalog.getString('Memo'), opts, function(text) {
popupService.showPrompt(wallet.name, gettextCatalog.getString('Memo'), opts, function(text) {
if (typeof text == "undefined") return;
$log.debug('Saving memo');