Fix text input placeholder issue again

Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
Jan-Christoph Borchardt 2020-05-01 02:35:03 +02:00
Родитель 3607a22362
Коммит 1dd3231b31
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: CBD846FC845CBE17
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -31,7 +31,7 @@
<!-- TODO: properly choose max length -->
<textarea ref="textarea"
:aria-label="t('forms', 'A long answer for the question “{text}”', { text })"
:placeholder="t('forms', 'People can enter a long answer')"
:placeholder="t('forms', 'Long answer text')"
:required="true /* TODO: implement required option */"
:value="values[0]"
class="question__text"

Просмотреть файл

@ -31,7 +31,7 @@
<!-- TODO: properly choose max length -->
<input ref="input"
:aria-label="t('forms', 'A short answer for the question “{text}”', { text })"
:placeholder="t('forms', 'People can enter a short answer')"
:placeholder="t('forms', 'Short answer text')"
:required="true /* TODO: implement required option */"
:value="values[0]"
class="question__input"