Update initial server connection to not block the home page

This commit is contained in:
advplyr 2023-09-10 08:38:11 -05:00
parent cbdc3513c7
commit 03225957aa
3 changed files with 5 additions and 5 deletions

View file

@ -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'