[users] Fixed avatar on widget

This commit is contained in:
Ferdinand Thiessen 2021-04-01 19:40:07 +02:00
parent f787e314ef
commit 679d98a2af
1 changed files with 6 additions and 2 deletions

View File

@ -4,7 +4,7 @@
<div v-if="avatar" class="col-4">
<div style="width: 100%; padding-bottom: 100%; position: relative">
<q-avatar style="position: absolute; top: 0; left: 0; width: 100%; height: 100%">
<q-img :src="avatarLink" @error="avatar = false" />
<img :src="avatarLink" :onerror="error" />
</q-avatar>
</div>
</div>
@ -43,6 +43,10 @@ export default defineComponent({
const name = ref(mainStore.currentUser.firstname);
const avatarLink = ref(mainStore.currentUser.avatar_url);
function error() {
avatar.value = false;
}
function userHasBirthday(user: FG.User) {
const today = new Date();
return (
@ -62,7 +66,7 @@ export default defineComponent({
.filter((user) => user.userid !== mainStore.currentUser.userid)
);
return { avatar, avatarLink, name, hasBirthday, birthday };
return { avatar, avatarLink, error, name, hasBirthday, birthday };
},
});
</script>