fix(nc-gui): personal view owner emoji icon size issue

This commit is contained in:
Ramesh Mane
2025-10-17 14:03:10 +00:00
parent 348abb4393
commit 38690de6af
2 changed files with 10 additions and 2 deletions

View File

@@ -394,7 +394,11 @@ watch(isDropdownOpen, async () => {
<GeneralUserIcon
:user="idUserMap[vModel.owned_by]"
size="auto"
class="flex-none !text-[7px] !h-[14px] !min-h-[14px]"
class="flex-none !h-[14px] !min-h-[14px]"
:class="{
'!text-[7px]': !parseProp(idUserMap[vModel.owned_by]?.meta).iconType,
'!text-tiny': parseProp(idUserMap[vModel.owned_by]?.meta).iconType,
}"
/>
</div>