tooltips for ui buttons (#86)

This commit is contained in:
Michael Quigley 2022-10-31 15:35:41 -04:00
parent 21c70ee5dd
commit 98b7f81aa8
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ const Logout = (props) => {
}
return (
<button onClick={onClick} aria-label={"log out"}><Icon path={logoutIcon} size={.7}/></button>
<button onClick={onClick} aria-label={"log out"} title={"Log out"}><Icon path={logoutIcon} size={.7}/></button>
);
}

View File

@ -28,7 +28,7 @@ const Token = (props) => {
return (
<div>
<button aria-describedby={popoverId} onClick={handlePopoverClick}><Icon path={mdiKey} size={0.7}/></button>
<button aria-describedby={popoverId} onClick={handlePopoverClick} title={"See Enable Secret"}><Icon path={mdiKey} size={0.7}/></button>
<Popover
id={popoverId}
open={popoverOpen}