Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-11-07 09:25:36 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-11-07 09:25:36 +0300
commit96d9bd364b5ca189869c943be50cb1eff42653fc (patch)
treefaf0f1d6fc6ec8109e2f97fdfb6103ea0562dbce
parenteed34eae83ea811aec5a275385c21abce0361004 (diff)
Add latest changes from gitlab-org/gitlab@16-5-stable-ee
-rw-r--r--app/assets/javascripts/issues/show/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/issues/show/index.js b/app/assets/javascripts/issues/show/index.js
index cd5c6f4825a..b1d8a245f5e 100644
--- a/app/assets/javascripts/issues/show/index.js
+++ b/app/assets/javascripts/issues/show/index.js
@@ -131,8 +131,8 @@ export function initIssuableApp(store) {
isLocked: this.getNoteableData?.discussion_locked,
issuableStatus: this.getNoteableData?.state,
issuableType: issueType,
- issueId: this.getNoteableData?.id.toString(),
- issueIid: this.getNoteableData?.iid.toString(),
+ issueId: this.getNoteableData?.id?.toString(),
+ issueIid: this.getNoteableData?.iid?.toString(),
showTitleBorder: issueType !== TYPE_INCIDENT,
},
});