aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pending-tx
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@gmail.com>2018-04-18 15:56:52 +0800
committerAlexander Tseung <alextsg@gmail.com>2018-04-18 16:03:07 +0800
commit053044fb6561bb3fe7b87c61bf5d5d2750c46c58 (patch)
tree27347ef40a07a190911880f06ca10d60d62ff2ce /ui/app/components/pending-tx
parentde7fc781a56fe21c01d8038b01da01fdec90f219 (diff)
downloadtangerine-wallet-browser-053044fb6561bb3fe7b87c61bf5d5d2750c46c58.tar.gz
tangerine-wallet-browser-053044fb6561bb3fe7b87c61bf5d5d2750c46c58.tar.zst
tangerine-wallet-browser-053044fb6561bb3fe7b87c61bf5d5d2750c46c58.zip
Fix spinner layout
Diffstat (limited to 'ui/app/components/pending-tx')
-rw-r--r--ui/app/components/pending-tx/index.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/ui/app/components/pending-tx/index.js b/ui/app/components/pending-tx/index.js
index dc496a8d8..6ee83ba7e 100644
--- a/ui/app/components/pending-tx/index.js
+++ b/ui/app/components/pending-tx/index.js
@@ -142,7 +142,8 @@ PendingTx.prototype.render = function () {
if (isFetching) {
return h(Loading, {
- loadingMessage: this.context.t('estimatingTransaction'),
+ fullScreen: true,
+ loadingMessage: this.context.t('generatingTransaction'),
})
}
@@ -168,7 +169,9 @@ PendingTx.prototype.render = function () {
sendTransaction,
})
default:
- return h(Loading)
+ return h(Loading, {
+ fullScreen: true,
+ })
}
}