diff options
author | Michael Muré <batolettre@gmail.com> | 2020-02-16 01:43:33 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2020-02-16 02:15:11 +0100 |
commit | 602f91148b853b781d38506cbaadce011972da1d (patch) | |
tree | fe3636e657fb2220d730883a3a1a6d436fdf6708 /webui | |
parent | c4f5cae4a44330ae0a8fb063768c4181fd0e83c1 (diff) | |
download | git-bug-602f91148b853b781d38506cbaadce011972da1d.tar.gz |
webui: fix missing space in the bug preview
Diffstat (limited to 'webui')
-rw-r--r-- | webui/src/pages/list/BugRow.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webui/src/pages/list/BugRow.tsx b/webui/src/pages/list/BugRow.tsx index 829877ef..9c1883a3 100644 --- a/webui/src/pages/list/BugRow.tsx +++ b/webui/src/pages/list/BugRow.tsx @@ -100,9 +100,9 @@ function BugRow({ bug }: Props) { </div> </Link> <div className={classes.details}> - {bug.humanId} opened + {bug.humanId} opened <Date date={bug.createdAt} /> - by {bug.author.displayName} + by {bug.author.displayName} </div> </div> </TableCell> |