diff --git a/components/widgets/ConnectionIndicator.vue b/components/widgets/ConnectionIndicator.vue
index e58e01e1..5305873a 100644
--- a/components/widgets/ConnectionIndicator.vue
+++ b/components/widgets/ConnectionIndicator.vue
@@ -30,10 +30,15 @@ export default {
isCellular() {
return this.networkConnectionType === 'cellular'
},
+ attemptingConnection() {
+ return this.$store.state.attemptingConnection
+ },
icon() {
if (!this.user) return null // hide when not connected to server
- if (!this.networkConnected) {
+ if (this.attemptingConnection) {
+ return 'cloud_sync'
+ } else if (!this.networkConnected) {
return 'wifi_off'
} else if (!this.socketConnected) {
return 'cloud_off'
@@ -55,7 +60,9 @@ export default {
showAlertDialog() {
var msg = ''
var meteredString = this.isNetworkUnmetered ? 'unmetered' : 'metered'
- if (!this.networkConnected) {
+ if (this.attemptingConnection) {
+ msg = 'Attempting server connection'
+ } else if (!this.networkConnected) {
msg = 'No internet'
} else if (!this.socketConnected) {
msg = 'Socket not connected'
diff --git a/layouts/default.vue b/layouts/default.vue
index a73f2d85..c48f39c6 100644
--- a/layouts/default.vue
+++ b/layouts/default.vue
@@ -5,7 +5,7 @@