diff options
Diffstat (limited to 'src/client/app')
| -rw-r--r-- | src/client/app/common/views/components/page-editor/page-editor.script-block.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/common/views/components/page-editor/page-editor.script-block.vue b/src/client/app/common/views/components/page-editor/page-editor.script-block.vue index 3122832030..9554c75d04 100644 --- a/src/client/app/common/views/components/page-editor/page-editor.script-block.vue +++ b/src/client/app/common/views/components/page-editor/page-editor.script-block.vue @@ -16,8 +16,8 @@ <section v-else-if="value.type === 'multiLineText'" class="tbwccoaw"> <textarea v-model="value.value"></textarea> </section> - <section v-else-if="value.type === 'textList'" class="frvuzvoi"> - <ui-textarea v-model="value.value"></ui-textarea> + <section v-else-if="value.type === 'textList'" class="tbwccoaw"> + <textarea v-model="value.value" :placeholder="$t('script.blocks._textList.info')"></textarea> </section> <section v-else-if="value.type === 'number'" class="tbwccoaw"> <input v-model="value.value" type="number"/> |