aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2020-02-16 01:43:33 +0100
committerMichael Muré <batolettre@gmail.com>2020-02-16 02:15:11 +0100
commit602f91148b853b781d38506cbaadce011972da1d (patch)
treefe3636e657fb2220d730883a3a1a6d436fdf6708 /webui/src/pages
parentc4f5cae4a44330ae0a8fb063768c4181fd0e83c1 (diff)
downloadgit-bug-602f91148b853b781d38506cbaadce011972da1d.tar.gz
webui: fix missing space in the bug preview
Diffstat (limited to 'webui/src/pages')
-rw-r--r--webui/src/pages/list/BugRow.tsx4
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&nbsp;
<Date date={bug.createdAt} />
- by {bug.author.displayName}
+ &nbsp;by {bug.author.displayName}
</div>
</div>
</TableCell>