aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/components/BugTitleForm/BugTitleForm.tsx
diff options
context:
space:
mode:
authorSascha <GlancingMind@outlook.com>2021-04-22 14:02:43 +0200
committerSascha <GlancingMind@outlook.com>2021-04-22 14:17:00 +0200
commit774bae6d432c13cfa0de3ddc2f111927743243fe (patch)
tree0c52317767e18f339bec08bfcfe398ecb8bfbc10 /webui/src/components/BugTitleForm/BugTitleForm.tsx
parent41e85023019bc13c06a1de2c431e0bd920e9e29a (diff)
downloadgit-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/components/BugTitleForm/BugTitleForm.tsx')
-rw-r--r--webui/src/components/BugTitleForm/BugTitleForm.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webui/src/components/BugTitleForm/BugTitleForm.tsx b/webui/src/components/BugTitleForm/BugTitleForm.tsx
index 1092b203..2a3c4db0 100644
--- a/webui/src/components/BugTitleForm/BugTitleForm.tsx
+++ b/webui/src/components/BugTitleForm/BugTitleForm.tsx
@@ -90,7 +90,7 @@ function BugTitleForm({ bug }: Props) {
setTitle({
variables: {
input: {
- prefix: bug.humanId,
+ prefix: bug.id,
title: issueTitleInput.value,
},
},