aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pending-tx/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/pending-tx/index.js')
-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,
+ })
}
}