Improve navigation
This commit is contained in:
parent
d5945d675e
commit
6a22d99c17
12 changed files with 198 additions and 72 deletions
|
|
@ -66,7 +66,11 @@ export default {
|
|||
},
|
||||
|
||||
updateMemberCount() {
|
||||
this.memberCount = this.room.getJoinedMemberCount();
|
||||
if (!this.room) {
|
||||
this.memberCount = 0;
|
||||
} else {
|
||||
this.memberCount = this.room.getJoinedMemberCount();
|
||||
}
|
||||
},
|
||||
|
||||
showRoomInfo() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue