webui: fix missing space in the bug preview

Michael Muré created

Change summary

webui/src/pages/list/BugRow.tsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Detailed changes

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>