1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

profile description

This commit is contained in:
Fedor Katurov 2020-04-08 20:55:18 +07:00
parent fe6f977cf1
commit 60473dc57e
2 changed files with 15 additions and 3 deletions

View file

@ -51,6 +51,10 @@ const ProfilePageLeft: FC<IProps> = ({ username, profile }) => {
</div>
</div>
</div>
{profile && profile.user && profile.user.description && (
<div className={styles.description}>{profile.user.description}</div>
)}
</div>
);
};