mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
Fleet UI: [released bug] Add hover state/ tabbing state to user side panel buttons (#13292)
This commit is contained in:
parent
449d0c99d5
commit
c177b8ecbb
1 changed files with 6 additions and 1 deletions
|
|
@ -113,13 +113,18 @@ const UserSidePanel = ({
|
|||
onClick={onChangePassword}
|
||||
disabled={ssoEnabled}
|
||||
className={`${baseClass}__button`}
|
||||
variant="brand"
|
||||
>
|
||||
Change password
|
||||
</Button>
|
||||
<p className={`${baseClass}__last-updated`}>
|
||||
Last changed: {lastUpdatedAt}
|
||||
</p>
|
||||
<Button onClick={onGetApiToken} className={`${baseClass}__button`}>
|
||||
<Button
|
||||
onClick={onGetApiToken}
|
||||
className={`${baseClass}__button`}
|
||||
variant="brand"
|
||||
>
|
||||
Get API token
|
||||
</Button>
|
||||
<span
|
||||
|
|
|
|||
Loading…
Reference in a new issue