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:
authorPhil Hughes <me@iamphill.com>2017-05-24 14:25:53 +0300
committerPhil Hughes <me@iamphill.com>2017-05-24 14:25:53 +0300
commitb2c2751836703a6dcf3ae92e05bf8b59ba4aa9a3 (patch)
treeba89da3f2c12c94cb5b00fd8d53d5653f20230fc /app/assets/javascripts/issue_show/stores
parente78b8223fe0a9239222850f6c0a6d6cb582176c0 (diff)
Changed all data to come through the JSON script element
[ci skip]
Diffstat (limited to 'app/assets/javascripts/issue_show/stores')
-rw-r--r--app/assets/javascripts/issue_show/stores/index.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/assets/javascripts/issue_show/stores/index.js b/app/assets/javascripts/issue_show/stores/index.js
index ea6f4e6a4fa..76abcc64ed3 100644
--- a/app/assets/javascripts/issue_show/stores/index.js
+++ b/app/assets/javascripts/issue_show/stores/index.js
@@ -1,12 +1,13 @@
export default class Store {
constructor({
titleHtml,
+ titleText,
descriptionHtml,
descriptionText,
}) {
this.state = {
titleHtml,
- titleText: '',
+ titleText,
descriptionHtml,
descriptionText,
taskStatus: '',