From 607f46f4e4b755cbddd3e12ca88659f63ece97ee Mon Sep 17 00:00:00 2001 From: Jonas Rittershofer Date: Fri, 15 May 2020 14:09:23 +0200 Subject: [PATCH] Specialice question input-placeholders Signed-off-by: Jonas Rittershofer --- src/components/Questions/QuestionLong.vue | 19 ++++++++++++++++++- src/components/Questions/QuestionMultiple.vue | 1 + src/components/Questions/QuestionShort.vue | 19 ++++++++++++++++++- src/mixins/QuestionMixin.js | 8 ++++++++ src/models/AnswerTypes.js | 6 ++++++ 5 files changed, 51 insertions(+), 2 deletions(-) diff --git a/src/components/Questions/QuestionLong.vue b/src/components/Questions/QuestionLong.vue index 9b146e8..e51c503 100644 --- a/src/components/Questions/QuestionLong.vue +++ b/src/components/Questions/QuestionLong.vue @@ -26,6 +26,7 @@ :text="text" :mandatory="mandatory" :edit.sync="edit" + :read-only="readOnly" :max-question-length="maxStringLengths.questionText" :title-placeholder="answerType.titlePlaceholder" @update:text="onTitleChange" @@ -35,7 +36,8 @@