Merge branch '630-add-link-to-my-rooms-from-the-profile-page' into 'dev'
Add "My rooms" link to profile page For issue #630 See merge request keanuapp/keanuapp-weblite!342
This commit is contained in:
commit
fafcfac609
3 changed files with 18 additions and 0 deletions
|
|
@ -84,6 +84,12 @@
|
|||
:icon="'$vuetify.icons.edit'"
|
||||
:text="$t('profile.change_name')"
|
||||
/>
|
||||
<ActionRow
|
||||
@click="goHome"
|
||||
:icon="'$vuetify.icons.ic_rooms'"
|
||||
:text="$t('profile.my_rooms')"
|
||||
/>
|
||||
|
||||
<ActionRow
|
||||
@click="showSelectLanguageDialog = true"
|
||||
:icon="'$vuetify.icons.globe'"
|
||||
|
|
@ -404,6 +410,10 @@ export default {
|
|||
onNotifyDialogClosed() {
|
||||
this.updateGlobalNotificationStore(false);
|
||||
this.notificationDialog = false;
|
||||
},
|
||||
|
||||
goHome() {
|
||||
this.$navigation.push({ name: "Home" }, -1);
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue