diff options
Diffstat (limited to 'webui/src/pages/list/BugRow.tsx')
-rw-r--r-- | webui/src/pages/list/BugRow.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webui/src/pages/list/BugRow.tsx b/webui/src/pages/list/BugRow.tsx index a1466d63..562149f3 100644 --- a/webui/src/pages/list/BugRow.tsx +++ b/webui/src/pages/list/BugRow.tsx @@ -106,7 +106,7 @@ function BugRow({ bug }: Props) { <TableCell className={classes.cell}> <BugStatus status={bug.status} className={classes.status} /> <div className={classes.expand}> - <Link to={'bug/' + bug.humanId}> + <Link to={'bug/' + bug.id}> <div className={classes.bugTitleWrapper}> <span className={classes.title}>{bug.title}</span> {bug.labels.length > 0 && |