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-10 19:28:36 +0300
committerPhil Hughes <me@iamphill.com>2017-05-10 19:28:36 +0300
commit598b05dfff2fa16f9dc835c3f2cea88da741a9d7 (patch)
treece9a390eda0cb8cf588757e20648b5d46e4c48b1 /app/assets/javascripts/issue_show/stores
parent3313df580c79435187ba673499b48ba3be783cea (diff)
Fixed a bunch of errors with invalid prop
Use v-model on textrea
Diffstat (limited to 'app/assets/javascripts/issue_show/stores')
-rw-r--r--app/assets/javascripts/issue_show/stores/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/issue_show/stores/index.js b/app/assets/javascripts/issue_show/stores/index.js
index 9c759dc53cb..8e89a2b7730 100644
--- a/app/assets/javascripts/issue_show/stores/index.js
+++ b/app/assets/javascripts/issue_show/stores/index.js
@@ -1,11 +1,11 @@
export default class Store {
constructor({
- title,
+ titleHtml,
descriptionHtml,
descriptionText,
}) {
this.state = {
- titleHtml: title,
+ titleHtml,
titleText: '',
descriptionHtml,
descriptionText,