fix broken copy invite link
This commit is contained in:
parent
5e3aaf291e
commit
582354ea29
2 changed files with 9 additions and 3 deletions
|
|
@ -48,7 +48,7 @@
|
|||
</v-col>
|
||||
<v-col cols="auto" class="text-end ma-0 pa-0 ms-1 clickable close-button more-menu-button">
|
||||
<div :class="{ 'popup-open': showMoreMenu }">
|
||||
<v-btn class="mx-2 box-shadow-none" fab dark small color="transparent" @click.stop="showMoreMenu = true">
|
||||
<v-btn class="mx-2 box-shadow-none" fab dark small color="transparent" @click.stop="onShowMoreMenu">
|
||||
<v-icon size="15">$vuetify.icons.ic_more</v-icon>
|
||||
</v-btn>
|
||||
</div>
|
||||
|
|
@ -232,6 +232,12 @@ export default {
|
|||
},
|
||||
|
||||
methods: {
|
||||
onShowMoreMenu() {
|
||||
if(this.publicRoomLink == null) {
|
||||
this.roomJoinRule = this.getRoomJoinRule();
|
||||
}
|
||||
this.showMoreMenu = true
|
||||
},
|
||||
setHasShownMissedItemsHint() {
|
||||
this.$store.commit('setHasShownMissedItemsHint', "1");
|
||||
this.showMissedItemsInfo = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue