mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
showing users fullname
This commit is contained in:
parent
298ba7d586
commit
54687b131c
5 changed files with 5 additions and 3 deletions
|
@ -49,6 +49,6 @@
|
|||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: transparentize($color: #000000, $amount: 0.5);
|
||||
// background: transparentize($color: #000000, $amount: 0.5);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
|
|
@ -23,7 +23,7 @@ const ProfileInfo: FC<IProps> = ({ user, is_loading = false }) => (
|
|||
|
||||
<div className={styles.field}>
|
||||
<div className={styles.name}>
|
||||
{is_loading ? <Placeholder width="80%" /> : user.username}
|
||||
{is_loading ? <Placeholder width="80%" /> : user.fullname || user.username}
|
||||
</div>
|
||||
|
||||
<div className={styles.description}>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue