mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-18 22:33:50 +02:00
Avatar name and bio link length
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
<template>
|
||||
<div @click="confirm" class="cursor-pointer w-fit align-top flex items-center">
|
||||
<span class="flex items-center mr-1"
|
||||
<span v-if="avatarName" class="flex items-center mr-1"
|
||||
>{{ avatarName }} <Lock v-if="avatarType && avatarType === '(own)'" class="h-4 w-4 ml-1"
|
||||
/></span>
|
||||
<span v-else class="text-muted-foreground">Unknown Avatar</span>
|
||||
<TooltipWrapper v-if="avatarTags">
|
||||
<template #content>
|
||||
<span class="truncate">{{ avatarTags }}</span>
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
v-for="(link, index) in bioDialog.bioLinks"
|
||||
:key="index"
|
||||
v-model="bioDialog.bioLinks[index]"
|
||||
:maxlength="64"
|
||||
:maxlength="1000"
|
||||
show-count
|
||||
size="sm"
|
||||
style="margin-top: 5px">
|
||||
|
||||
@@ -4,10 +4,10 @@
|
||||
<TooltipWrapper
|
||||
v-if="userDialog.isFavorite"
|
||||
side="top"
|
||||
:content="t('dialog.user.actions.unfavorite_tooltip')">
|
||||
:content="t('dialog.user.actions.favorites_tooltip')">
|
||||
<Button class="rounded-full" size="icon-lg" @click="userDialogCommand('Add Favorite')"><Star /></Button>
|
||||
</TooltipWrapper>
|
||||
<TooltipWrapper v-else side="top" :content="t('dialog.user.actions.favorite_tooltip')">
|
||||
<TooltipWrapper v-else side="top" :content="t('dialog.user.actions.favorites_tooltip')">
|
||||
<Button class="rounded-full" size="icon-lg" variant="outline" @click="userDialogCommand('Add Favorite')"
|
||||
><Star
|
||||
/></Button>
|
||||
|
||||
@@ -146,7 +146,7 @@
|
||||
v-if="userDialog.ref.profilePicOverride && !userDialog.ref.currentAvatarImageUrl"
|
||||
side="top"
|
||||
:content="t('dialog.user.info.vrcplus_hides_avatar')">
|
||||
<Info />
|
||||
<Info class="inline-block" />
|
||||
</TooltipWrapper>
|
||||
</span>
|
||||
<div class="extra">
|
||||
|
||||
@@ -1005,8 +1005,7 @@
|
||||
"showcased": "Showcased"
|
||||
},
|
||||
"actions": {
|
||||
"favorite_tooltip": "Add to favorites",
|
||||
"unfavorite_tooltip": "Remove from favorites",
|
||||
"favorites_tooltip": "Favorites",
|
||||
"refresh": "Refresh",
|
||||
"share": "Share",
|
||||
"invite": "Invite",
|
||||
|
||||
Reference in New Issue
Block a user