diff options
author | Michael Muré <batolettre@gmail.com> | 2021-02-08 09:35:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-08 09:35:45 +0100 |
commit | ef7a0f1b11c8e44a44f1ec23a68cab2adefad36c (patch) | |
tree | e6f345e4968f59c8f521d27f1caebff076a40143 /webui/src/pages/bug | |
parent | 0eb4a5907118f5cad6e4dea64a6ca87aad0247ee (diff) | |
parent | 29ea8df4259921f1789e0e6d584767fc5f54b284 (diff) | |
download | git-bug-ef7a0f1b11c8e44a44f1ec23a68cab2adefad36c.tar.gz |
Merge pull request #555 from claudioantonio/master
Commit for #541
Diffstat (limited to 'webui/src/pages/bug')
-rw-r--r-- | webui/src/pages/bug/Bug.tsx | 2 | ||||
-rw-r--r-- | webui/src/pages/bug/CommentForm.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/webui/src/pages/bug/Bug.tsx b/webui/src/pages/bug/Bug.tsx index bd6e44c4..d85c5296 100644 --- a/webui/src/pages/bug/Bug.tsx +++ b/webui/src/pages/bug/Bug.tsx @@ -3,8 +3,8 @@ import React from 'react'; import { makeStyles } from '@material-ui/core/styles'; import BugTitleForm from 'src/components/BugTitleForm/BugTitleForm'; +import IfLoggedIn from 'src/components/IfLoggedIn/IfLoggedIn'; import Label from 'src/components/Label'; -import IfLoggedIn from 'src/layout/IfLoggedIn'; import { BugFragment } from './Bug.generated'; import CommentForm from './CommentForm'; diff --git a/webui/src/pages/bug/CommentForm.tsx b/webui/src/pages/bug/CommentForm.tsx index c623dabb..0b97e133 100644 --- a/webui/src/pages/bug/CommentForm.tsx +++ b/webui/src/pages/bug/CommentForm.tsx @@ -4,7 +4,7 @@ import Button from '@material-ui/core/Button'; import Paper from '@material-ui/core/Paper'; import { makeStyles, Theme } from '@material-ui/core/styles'; -import CommentInput from '../../layout/CommentInput/CommentInput'; +import CommentInput from '../../components/CommentInput/CommentInput'; import CloseBugButton from 'src/components/CloseBugButton/CloseBugButton'; import ReopenBugButton from 'src/components/ReopenBugButton/ReopenBugButton'; |