diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-08-09 18:01:12 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-08-09 18:01:12 +0900 |
| commit | 1c764139bf9dfa5575ea32cfa0a4eecf9690cd7d (patch) | |
| tree | 0f47672fdf6c0070faf5dde114fe41b408f72867 /src/client/components/poll-editor.vue | |
| parent | 連合インスタンス設定ダイアログ (diff) | |
| download | sharkey-1c764139bf9dfa5575ea32cfa0a4eecf9690cd7d.tar.gz sharkey-1c764139bf9dfa5575ea32cfa0a4eecf9690cd7d.tar.bz2 sharkey-1c764139bf9dfa5575ea32cfa0a4eecf9690cd7d.zip | |
:art:
Diffstat (limited to 'src/client/components/poll-editor.vue')
| -rw-r--r-- | src/client/components/poll-editor.vue | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/components/poll-editor.vue b/src/client/components/poll-editor.vue index dfc198fc1e..0a9a1c6a03 100644 --- a/src/client/components/poll-editor.vue +++ b/src/client/components/poll-editor.vue @@ -5,8 +5,7 @@ </p> <ul ref="choices"> <li v-for="(choice, i) in choices" :key="i"> - <MkInput class="input" :model-value="choice" @update:modelValue="onInput(i, $event)"> - <template #label>{{ $t('_poll.choiceN', { n: i + 1 }) }}</template> + <MkInput class="input" :model-value="choice" @update:modelValue="onInput(i, $event)" :placeholder="$t('_poll.choiceN', { n: i + 1 })"> </MkInput> <button @click="remove(i)" class="_button"> <i class="fas fa-times"></i> |