mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-09 00:33:38 -05:00
fix: copy full username from user profile
This commit is contained in:
parent
cf691a8462
commit
449eee006d
2 changed files with 15 additions and 2 deletions
|
@ -58,8 +58,10 @@
|
|||
}
|
||||
|
||||
.username {
|
||||
display: block;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
width: fit-content;
|
||||
color: var(--secondary-foreground);
|
||||
}
|
||||
|
||||
|
|
|
@ -174,9 +174,20 @@ export const UserProfile = observer(
|
|||
<span
|
||||
className={styles.username}
|
||||
onClick={() =>
|
||||
modalController.writeText(user.username)
|
||||
modalController.writeText(
|
||||
user.username +
|
||||
"#" +
|
||||
user.discriminator,
|
||||
)
|
||||
}>
|
||||
{user.username}#{user.discriminator}
|
||||
<Localizer>
|
||||
<Tooltip
|
||||
content={
|
||||
<Text id="app.special.copy_username" />
|
||||
}>
|
||||
{user.username}#{user.discriminator}
|
||||
</Tooltip>
|
||||
</Localizer>
|
||||
</span>
|
||||
</div>
|
||||
{user.status?.text && (
|
||||
|
|
Loading…
Reference in a new issue