mirror of
https://github.com/mattermost/mattermost.git
synced 2026-05-28 04:35:04 -04:00
Merge 68af1f5c3f into cfafefe58c
This commit is contained in:
commit
73205d89d9
2 changed files with 4 additions and 4 deletions
|
|
@ -21,11 +21,11 @@ exports[`UserAccountNameMenuItem should not break if no props are passed 1`] = `
|
|||
<div
|
||||
class="label-elements"
|
||||
>
|
||||
<h2
|
||||
<span
|
||||
class="userAccountMenu_nameMenuItem_primaryLabel"
|
||||
>
|
||||
@undefined
|
||||
</h2>
|
||||
</span>
|
||||
</div>
|
||||
</li>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -53,9 +53,9 @@ export default function UserAccountNameMenuItem({profilePicture, ...rest}: Props
|
|||
const username = `@${currentUser?.username}`?.trim();
|
||||
|
||||
return (
|
||||
<h2 className='userAccountMenu_nameMenuItem_primaryLabel'>
|
||||
<span className='userAccountMenu_nameMenuItem_primaryLabel'>
|
||||
{username}
|
||||
</h2>
|
||||
</span>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue