aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages/identity/BugList.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/pages/identity/BugList.tsx')
-rw-r--r--webui/src/pages/identity/BugList.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/webui/src/pages/identity/BugList.tsx b/webui/src/pages/identity/BugList.tsx
index e74c11d4..c7994827 100644
--- a/webui/src/pages/identity/BugList.tsx
+++ b/webui/src/pages/identity/BugList.tsx
@@ -1,6 +1,6 @@
import React from 'react';
-import { Card, Link, Typography } from '@material-ui/core';
+import { Card, Divider, Link, Typography } from '@material-ui/core';
import CircularProgress from '@material-ui/core/CircularProgress';
import { makeStyles } from '@material-ui/core/styles';
@@ -53,6 +53,7 @@ function BugList({ humanId }: Props) {
{bug.title}
</Link>
</Typography>
+ <Divider />
<Typography variant="subtitle2">
Created&nbsp;
<Date date={bug.createdAt} />
@@ -64,6 +65,7 @@ function BugList({ humanId }: Props) {
</Card>
);
})}
+ {bugs?.length === 0 && <p>No authored bugs by this user found.</p>}
</div>
);
}