diff options
author | Sascha <GlancingMind@outlook.com> | 2021-04-22 14:02:43 +0200 |
---|---|---|
committer | Sascha <GlancingMind@outlook.com> | 2021-04-22 14:17:00 +0200 |
commit | 774bae6d432c13cfa0de3ddc2f111927743243fe (patch) | |
tree | 0c52317767e18f339bec08bfcfe398ecb8bfbc10 /webui/src/pages/list | |
parent | 41e85023019bc13c06a1de2c431e0bd920e9e29a (diff) | |
download | git-bug-774bae6d432c13cfa0de3ddc2f111927743243fe.tar.gz |
Replace occurrences of humanId with the full Id
Unless an ID must be shorted for user convenience, the full id should be used
to prevent collisions.
Diffstat (limited to 'webui/src/pages/list')
-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 && |