Compare commits

..

No commits in common. "872735dac3fcf978d611f57145e77d61d9eda413" and "cfcd4e1e9843675056422d31178e5e3dec020352" have entirely different histories.

View File

@ -403,18 +403,18 @@ onMounted(() => {
class="text-no-wrap"
>
<!-- full name -->
<template #item.title="{ item }">
<template #item.name="{ item }">
<div class="d-flex align-center">
<!-- avatar -->
<VAvatar
size="32"
:color="item.image_url ? '' : 'primary'"
:class="item.image_url ? '' : 'v-avatar-light-bg primary--text'"
:variant="!item.image_url ? 'tonal' : undefined"
:color="item.avatar ? '' : 'primary'"
:class="item.avatar ? '' : 'v-avatar-light-bg primary--text'"
:variant="!item.avatar ? 'tonal' : undefined"
>
<VImg
v-if="item.image_url"
:src="item.image_url"
v-if="item.avatar"
:src="item.avatar"
/>
<span
v-else
@ -423,7 +423,7 @@ onMounted(() => {
</VAvatar>
<div class="d-flex flex-column ms-3">
<span class="d-block font-weight-medium text-high-emphasis text-truncate">{{ item.title }}</span>
<span class="d-block font-weight-medium text-high-emphasis text-truncate">{{ item.name }}</span>
</div>
</div>