diff --git a/components/widgets/ConnectionIndicator.vue b/components/widgets/ConnectionIndicator.vue index 5305873a..b246037d 100644 --- a/components/widgets/ConnectionIndicator.vue +++ b/components/widgets/ConnectionIndicator.vue @@ -34,7 +34,7 @@ export default { return this.$store.state.attemptingConnection }, icon() { - if (!this.user) return null // hide when not connected to server + if (!this.user && !this.attemptingConnection) return null // hide when not connected to server if (this.attemptingConnection) { return 'cloud_sync' diff --git a/layouts/default.vue b/layouts/default.vue index e8223261..202f73ac 100644 --- a/layouts/default.vue +++ b/layouts/default.vue @@ -3,10 +3,6 @@
- -
- -
diff --git a/pages/bookshelf/index.vue b/pages/bookshelf/index.vue index 61ef8f84..e8f4d46f 100644 --- a/pages/bookshelf/index.vue +++ b/pages/bookshelf/index.vue @@ -1,5 +1,9 @@