From 7829db8850643b6ad2b36f8747d01f66df9024d8 Mon Sep 17 00:00:00 2001 From: Cláudio Date: Mon, 8 Feb 2021 22:58:15 -0300 Subject: Commit for #543 - To test I forced Ifloggedin always return null. - Layout is ok even when edition components are hidden. --- webui/src/components/BugTitleForm/BugTitleForm.tsx | 39 ++++++++++++---------- 1 file changed, 22 insertions(+), 17 deletions(-) (limited to 'webui/src/components/BugTitleForm/BugTitleForm.tsx') diff --git a/webui/src/components/BugTitleForm/BugTitleForm.tsx b/webui/src/components/BugTitleForm/BugTitleForm.tsx index 16441c93..c47eab31 100644 --- a/webui/src/components/BugTitleForm/BugTitleForm.tsx +++ b/webui/src/components/BugTitleForm/BugTitleForm.tsx @@ -9,6 +9,7 @@ import { } from '@material-ui/core'; import { TimelineDocument } from '../../pages/bug/TimelineQuery.generated'; +import IfLoggedIn from '../IfLoggedIn/IfLoggedIn'; import Author from 'src/components/Author'; import Date from 'src/components/Date'; import { BugFragment } from 'src/pages/bug/Bug.generated'; @@ -156,23 +157,27 @@ function BugTitleForm({ bug }: Props) { {bug.title} {bug.humanId} -
- - -
+ + {() => ( +
+ + +
+ )} +
); } -- cgit