parent
8e74880ad1
commit
3aef5b6b3e
1 changed files with 15 additions and 0 deletions
|
|
@ -238,6 +238,18 @@
|
||||||
</v-card-actions>
|
</v-card-actions>
|
||||||
</v-card>
|
</v-card>
|
||||||
</v-dialog>
|
</v-dialog>
|
||||||
|
|
||||||
|
<!-- Loading indicator -->
|
||||||
|
<v-container fluid fill-height style="position: absolute" v-if="!initialLoadDone">
|
||||||
|
<v-row align="center" justify="center">
|
||||||
|
<v-col class="text-center">
|
||||||
|
<v-progress-circular
|
||||||
|
indeterminate
|
||||||
|
color="primary"
|
||||||
|
></v-progress-circular>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
</v-container>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
@ -379,6 +391,9 @@ export default {
|
||||||
return this.$matrix.currentRoom;
|
return this.$matrix.currentRoom;
|
||||||
},
|
},
|
||||||
roomId() {
|
roomId() {
|
||||||
|
if (!this.$matrix.ready) {
|
||||||
|
return null; // Not ready yet...
|
||||||
|
}
|
||||||
if (this.room) {
|
if (this.room) {
|
||||||
return this.room.roomId;
|
return this.room.roomId;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue