aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages/list/BugRow.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/pages/list/BugRow.tsx')
-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 9c1883a3..8d8fb5cb 100644
--- a/webui/src/pages/list/BugRow.tsx
+++ b/webui/src/pages/list/BugRow.tsx
@@ -42,7 +42,7 @@ const BugStatus: React.FC<StatusProps> = ({
}
};
-const useStyles = makeStyles(theme => ({
+const useStyles = makeStyles((theme) => ({
cell: {
display: 'flex',
alignItems: 'center',
@@ -92,7 +92,7 @@ function BugRow({ bug }: Props) {
<span className={classes.title}>{bug.title}</span>
{bug.labels.length > 0 && (
<span className={classes.labels}>
- {bug.labels.map(l => (
+ {bug.labels.map((l) => (
<Label key={l.name} label={l} />
))}
</span>