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
parent 3607a22362
commit 1dd3231b31
No known key found for this signature in database
GPG key ID: CBD846FC845CBE17
2 changed files with 2 additions and 2 deletions

View file

@ -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"

View file

@ -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"