diff options
author | Cláudio <claudio.engdist@gmail.com> | 2021-02-02 20:27:48 -0300 |
---|---|---|
committer | Cláudio <claudio.engdist@gmail.com> | 2021-02-02 20:27:48 -0300 |
commit | b7ec2404b031257ea30f46d4d7f92a498ac906db (patch) | |
tree | 017aaf872e4dd15ccd0ab186f333a8874a358b8a /webui/src/pages/bug/Bug.tsx | |
parent | 7b1b77dc444518a07779e836ec0c4c6b9406bbf9 (diff) | |
download | git-bug-b7ec2404b031257ea30f46d4d7f92a498ac906db.tar.gz |
Fix #546
- Fixing code review requests
Diffstat (limited to 'webui/src/pages/bug/Bug.tsx')
-rw-r--r-- | webui/src/pages/bug/Bug.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webui/src/pages/bug/Bug.tsx b/webui/src/pages/bug/Bug.tsx index f2a116f8..bd6e44c4 100644 --- a/webui/src/pages/bug/Bug.tsx +++ b/webui/src/pages/bug/Bug.tsx @@ -82,7 +82,7 @@ function Bug({ bug }: Props) { <IfLoggedIn> {() => ( <div className={classes.commentForm}> - <CommentForm bugId={bug.id} /> + <CommentForm bug={bug} /> </div> )} </IfLoggedIn> |