From 598b05dfff2fa16f9dc835c3f2cea88da741a9d7 Mon Sep 17 00:00:00 2001 From: Phil Hughes Date: Wed, 10 May 2017 17:28:36 +0100 Subject: Fixed a bunch of errors with invalid prop Use v-model on textrea --- app/assets/javascripts/issue_show/stores/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/assets/javascripts/issue_show/stores') 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, -- cgit v1.2.1