aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2021-02-09 10:04:26 +0100
committerGitHub <noreply@github.com>2021-02-09 10:04:26 +0100
commit3b08731aaa1ebe37fa12b8fd4068f2271f7eb307 (patch)
treebbe36e6a1291d363998bb7008bb6eec203eee0b7 /webui/src/pages
parentef7a0f1b11c8e44a44f1ec23a68cab2adefad36c (diff)
parent3d86c1cc783adf448c38a51a3bcbbdf9621dc70d (diff)
downloadgit-bug-3b08731aaa1ebe37fa12b8fd4068f2271f7eb307.tar.gz
Merge pull request #559 from claudioantonio/webui_543_ifloggedin
Webui 543 ifloggedin
Diffstat (limited to 'webui/src/pages')
-rw-r--r--webui/src/pages/list/ListQuery.tsx16
1 files changed, 13 insertions, 3 deletions
diff --git a/webui/src/pages/list/ListQuery.tsx b/webui/src/pages/list/ListQuery.tsx
index 424ffac0..87c21e3c 100644
--- a/webui/src/pages/list/ListQuery.tsx
+++ b/webui/src/pages/list/ListQuery.tsx
@@ -12,6 +12,8 @@ import KeyboardArrowLeft from '@material-ui/icons/KeyboardArrowLeft';
import KeyboardArrowRight from '@material-ui/icons/KeyboardArrowRight';
import Skeleton from '@material-ui/lab/Skeleton';
+import IfLoggedIn from 'src/components/IfLoggedIn/IfLoggedIn';
+
import FilterToolbar from './FilterToolbar';
import List from './List';
import { useListBugsQuery } from './ListQuery.generated';
@@ -310,9 +312,17 @@ function ListQuery() {
</button>
</form>
</div>
- <Button className={classes.greenButton} variant="contained" href="/new">
- New issue
- </Button>
+ <IfLoggedIn>
+ {() => (
+ <Button
+ className={classes.greenButton}
+ variant="contained"
+ href="/new"
+ >
+ New issue
+ </Button>
+ )}
+ </IfLoggedIn>
</header>
<FilterToolbar query={query} queryLocation={queryLocation} />
{content}