aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/conf-tx.js
diff options
context:
space:
mode:
authorChi Kei Chan <chikeichan@gmail.com>2017-10-21 06:35:26 +0800
committerGitHub <noreply@github.com>2017-10-21 06:35:26 +0800
commitd6f1f2bcca5609f9715ea477ff9ad832457f6b18 (patch)
tree0a26f28b3f85081374f93430ed06ae0bf2c54680 /ui/app/conf-tx.js
parent511339a969cdf0301b7f409498cd820262e1daa5 (diff)
parent5a93ec02523e8b54222cc44cba5b80dcf8f07a7a (diff)
downloadtangerine-wallet-browser-d6f1f2bcca5609f9715ea477ff9ad832457f6b18.tar.gz
tangerine-wallet-browser-d6f1f2bcca5609f9715ea477ff9ad832457f6b18.tar.zst
tangerine-wallet-browser-d6f1f2bcca5609f9715ea477ff9ad832457f6b18.zip
Merge pull request #2410 from alextsg/nu-2280
[NewUI] Fix loading animation not showing on network change
Diffstat (limited to 'ui/app/conf-tx.js')
-rw-r--r--ui/app/conf-tx.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/conf-tx.js b/ui/app/conf-tx.js
index f201010fc..dfa6f88c4 100644
--- a/ui/app/conf-tx.js
+++ b/ui/app/conf-tx.js
@@ -84,7 +84,7 @@ ConfirmTxScreen.prototype.render = function () {
*/
log.info(`rendering a combined ${unconfTxList.length} unconf msg & txs`)
- if (unconfTxList.length === 0) return h(Loading, { isLoading: true })
+ if (unconfTxList.length === 0) return h(Loading)
return currentTxView({
// Properties
@@ -130,7 +130,7 @@ function currentTxView (opts) {
return h(PendingTypedMsg, opts)
}
}
- return h(Loading, { isLoading: true })
+ return h(Loading)
}
ConfirmTxScreen.prototype.buyEth = function (address, event) {