diff options
author | Sascha <GlancingMind@outlook.com> | 2021-03-21 17:34:57 +0100 |
---|---|---|
committer | Sascha <GlancingMind@outlook.com> | 2021-03-21 17:49:01 +0100 |
commit | aa91f39cdf98217cb0b26c70f344148275617220 (patch) | |
tree | a23cbd762ebfda8d7a94b52cc8f878a6836f904d /webui/src/components/Header/Header.tsx | |
parent | 50f146a42a3b59341531b5f478217b10d7033ead (diff) | |
download | git-bug-aa91f39cdf98217cb0b26c70f344148275617220.tar.gz |
Fix (hoepfully) eslint error for pipeline
Unfortunatly will this result in error for eslint on local machine... *sigh*
Diffstat (limited to 'webui/src/components/Header/Header.tsx')
-rw-r--r-- | webui/src/components/Header/Header.tsx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/webui/src/components/Header/Header.tsx b/webui/src/components/Header/Header.tsx index 975944d7..70b8c9ff 100644 --- a/webui/src/components/Header/Header.tsx +++ b/webui/src/components/Header/Header.tsx @@ -83,7 +83,11 @@ function Header() { <AppBar position="fixed" className={classes.appBar}> <Toolbar> <Link to="/" className={classes.appTitle}> - <img src="/logo.svg" className={classes.logo} alt="git-bug logo" /> + <img + src="/logo.svg" + className={classes.logo} + alt="git-bug logo" + /> git-bug </Link> <div className={classes.filler} /> @@ -100,7 +104,11 @@ function Header() { onChange={handleTabClick} aria-label="nav tabs" > - <DisabledTabWithTooltip label="Code" value="/code" {...a11yProps(1)} /> + <DisabledTabWithTooltip + label="Code" + value="/code" + {...a11yProps(1)} + /> <Tab label="Bugs" value="/" href="/" {...a11yProps(2)} /> <DisabledTabWithTooltip label="Pull Requests" |