Do not prefill question titles either for even less confusion

Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
Jan-Christoph Borchardt 2020-05-09 04:23:41 +02:00
parent 49366596a9
commit a09c44476c
No known key found for this signature in database
GPG key ID: CBD846FC845CBE17
2 changed files with 3 additions and 3 deletions

View file

@ -34,8 +34,8 @@
<!-- Header -->
<div class="question__header">
<input v-if="edit"
:placeholder="t('forms', 'Enter a title for this question')"
<input v-if="edit || !text"
:placeholder="t('forms', 'Question title')"
:aria-label="t('forms', 'Title of question number {index}', {index})"
:value="text"
class="question__header-title"

View file

@ -248,7 +248,7 @@ export default {
* @param {string} type the question type, see AnswerTypes
*/
async addQuestion(type) {
const text = t('forms', 'New question')
const text = ''
this.isLoadingQuestions = true
try {