Skip to content

Commit fe84473

Browse files
committed
added tooltip to github button
Signed-off-by: Tobias Winkler <[email protected]>
1 parent 92bcc74 commit fe84473

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/app/containers/Header/components/Header.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import {
55
Typography,
66
IconButton,
77
Button,
8+
Tooltip,
89
} from '@material-ui/core';
910
import { createStyles, makeStyles, Theme } from '@material-ui/core/styles';
1011
import {
@@ -166,9 +167,11 @@ const Header = ({ databases, infos, tools }: Props) => {
166167

167168
<div className={classes.grow} />
168169

169-
<IconButton aria-label="Github page of the project" color="inherit">
170-
<GithubIcon />
171-
</IconButton>
170+
<Tooltip title="Github page of the project">
171+
<IconButton color="inherit">
172+
<GithubIcon />
173+
</IconButton>
174+
</Tooltip>
172175
</Toolbar>
173176
</AppBar>
174177
);

0 commit comments

Comments
 (0)