From 6102423bae1dc814aaf24a3f03ce0d35efd77f7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Baz=C3=A1n?= Date: Mon, 10 Jul 2017 12:11:46 -0300 Subject: [PATCH] add title to prompt --- src/js/controllers/preferencesFee.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/controllers/preferencesFee.js b/src/js/controllers/preferencesFee.js index ffc942f1a..06033967a 100644 --- a/src/js/controllers/preferencesFee.js +++ b/src/js/controllers/preferencesFee.js @@ -80,7 +80,7 @@ angular.module('copayApp.controllers').controller('preferencesFeeController', fu var showCustomFeePrompt = function() { $scope.invalidCustomFeeEntered = true; $scope.showMaxWarning = false; - popupService.showPrompt(null, gettextCatalog.getString('Custom Fee'), null, function(text) { + popupService.showPrompt(gettextCatalog.getString('Custom Fee'), gettextCatalog.getString('Set your own fee in satoshis/byte'), null, function(text) { if (!text || !parseInt(text)) return; $scope.feePerSatByte = parseInt(text); $scope.customFeePerKB = ($scope.feePerSatByte * 1000).toFixed();