Merge branch '545-from-black-screen-add-tap-to-profile-to-take-them-to-the-rooms-view' into 'dev'

Make click on profile in "goodbye" link to Home.

See merge request keanuapp/keanuapp-weblite!252
This commit is contained in:
N Pex 2023-10-25 10:58:15 +00:00
commit 14f54c8d35

View file

@ -39,7 +39,8 @@
<transition name="slow-fade"> <transition name="slow-fade">
<div <div
v-if="mounted" v-if="mounted"
class="goodbye-profile" class="goodbye-profile clickable"
@click.stop="viewOtherRooms"
> >
<div class="d-inline-block me-2 white--text"> <div class="d-inline-block me-2 white--text">
{{ $t("profile_info_popup.you_are") }} {{ $t("profile_info_popup.you_are") }}
@ -66,7 +67,6 @@
class="avatar-32 d-inline-block" class="avatar-32 d-inline-block"
size="32" size="32"
color="#e0e0e0" color="#e0e0e0"
@click.stop="showProfileInfo = true"
> >
<img v-if="userAvatar" :src="userAvatar" /> <img v-if="userAvatar" :src="userAvatar" />
<span v-else class="white--text">{{ userAvatarLetter }}</span> <span v-else class="white--text">{{ userAvatarLetter }}</span>