aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pending-tx/index.js
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@users.noreply.github.com>2018-05-31 01:38:53 +0800
committerGitHub <noreply@github.com>2018-05-31 01:38:53 +0800
commit389346913bf076fde6190a61afc4e3e4cd210afc (patch)
tree48340bd579c409ce0313696bbcc9c055dbb9cb3d /ui/app/components/pending-tx/index.js
parentb5c91d240bd111cec07bc40dd26cfb1741e88d62 (diff)
downloadtangerine-wallet-browser-389346913bf076fde6190a61afc4e3e4cd210afc.tar.gz
tangerine-wallet-browser-389346913bf076fde6190a61afc4e3e4cd210afc.tar.zst
tangerine-wallet-browser-389346913bf076fde6190a61afc4e3e4cd210afc.zip
Prevent loading screen from overlaying the app bar (#4417)
Diffstat (limited to 'ui/app/components/pending-tx/index.js')
-rw-r--r--ui/app/components/pending-tx/index.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/ui/app/components/pending-tx/index.js b/ui/app/components/pending-tx/index.js
index 893538bcf..3f8cd8823 100644
--- a/ui/app/components/pending-tx/index.js
+++ b/ui/app/components/pending-tx/index.js
@@ -130,7 +130,6 @@ PendingTx.prototype.render = function () {
if (isFetching) {
return h(Loading, {
- fullScreen: true,
loadingMessage: this.context.t('generatingTransaction'),
})
}
@@ -157,9 +156,7 @@ PendingTx.prototype.render = function () {
sendTransaction,
})
default:
- return h(Loading, {
- fullScreen: true,
- })
+ return h(Loading)
}
}