fix(ui): profile name gets cut off by roles (#2915)
This commit is contained in:
parent
1d62c2640e
commit
71369c4c78
3 changed files with 9 additions and 5 deletions
|
@ -189,7 +189,6 @@ async function copyAccountName() {
|
|||
<div flex="~ col gap1" pt2>
|
||||
<div flex gap2 items-center flex-wrap>
|
||||
<AccountDisplayName :account="account" font-bold sm:text-2xl text-xl />
|
||||
<AccountRolesIndicator v-if="account.roles?.length" :account="account" />
|
||||
<AccountLockIndicator v-if="account.locked" show-label />
|
||||
<AccountBotIndicator v-if="account.bot" show-label />
|
||||
</div>
|
||||
|
@ -202,6 +201,9 @@ async function copyAccountName() {
|
|||
</button>
|
||||
</CommonTooltip>
|
||||
</div>
|
||||
<div self-start mt-1>
|
||||
<AccountRolesIndicator v-if="account.roles?.length" :account="account" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<label
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue