Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions src/components/Questions/QuestionLong.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,15 @@
<textarea
ref="textarea"
:aria-label="
t('forms', 'A long answer for the question “{text}”', {
text,
})
t(
'forms',
'A long answer for the question “{text}”',
{
text,
},
undefined,
{ escape: false },
)
"
:placeholder="submissionInputPlaceholder"
:disabled="!readOnly"
Expand Down
12 changes: 9 additions & 3 deletions src/components/Questions/QuestionShort.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,15 @@
<input
ref="input"
:aria-label="
t('forms', 'A short answer for the question “{text}”', {
text,
})
t(
'forms',
'A short answer for the question “{text}”',
{
text,
},
undefined,
{ escape: false },
)
"
:placeholder="submissionInputPlaceholder"
:disabled="!readOnly"
Expand Down