diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-04-29 14:51:04 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-04-29 14:51:04 +0900 |
| commit | 9158426d0ac8123e982f8747efcc7eae3c27f4b3 (patch) | |
| tree | 57ca29f37b7aec7e95b099f7f091bf8181d21b3c /src/client | |
| parent | Improve usability (diff) | |
| download | sharkey-9158426d0ac8123e982f8747efcc7eae3c27f4b3.tar.gz sharkey-9158426d0ac8123e982f8747efcc7eae3c27f4b3.tar.bz2 sharkey-9158426d0ac8123e982f8747efcc7eae3c27f4b3.zip | |
Improve usability
Diffstat (limited to 'src/client')
| -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"/> |