diff options
Diffstat (limited to 'webui/src')
-rw-r--r-- | webui/src/components/CurrentIdentity/CurrentIdentity.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/webui/src/components/CurrentIdentity/CurrentIdentity.tsx b/webui/src/components/CurrentIdentity/CurrentIdentity.tsx index b68b84e5..f37cc0e4 100644 --- a/webui/src/components/CurrentIdentity/CurrentIdentity.tsx +++ b/webui/src/components/CurrentIdentity/CurrentIdentity.tsx @@ -66,7 +66,10 @@ const CurrentIdentity = () => { {user.displayName.charAt(0).toUpperCase()} </Avatar> <div className={classes.displayName}>{user.displayName}</div> - <LockIcon color="secondary" className={user.isProtected ? '' : ''} /> + <LockIcon + color="secondary" + className={user.isProtected ? '' : classes.hidden} + /> </Button> <Popper open={open} |