diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-11-09 22:11:11 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-11-09 22:11:11 +0900 |
| commit | 825fdb24758399fc425a099131879d9f8fa02696 (patch) | |
| tree | f41729a5c4544f97a2648b4e3705b918b5938e82 /src/client/app/common | |
| parent | Fix bug (diff) | |
| download | misskey-825fdb24758399fc425a099131879d9f8fa02696.tar.gz misskey-825fdb24758399fc425a099131879d9f8fa02696.tar.bz2 misskey-825fdb24758399fc425a099131879d9f8fa02696.zip | |
[Client] Fix bug
Diffstat (limited to 'src/client/app/common')
| -rw-r--r-- | src/client/app/common/views/components/poll-editor.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/views/components/poll-editor.vue b/src/client/app/common/views/components/poll-editor.vue index bd4647cde9..d6f30f380d 100644 --- a/src/client/app/common/views/components/poll-editor.vue +++ b/src/client/app/common/views/components/poll-editor.vue @@ -5,7 +5,7 @@ </p> <ul ref="choices"> <li v-for="(choice, i) in choices"> - <input :value="choice" @input="onInput(i, $event)" :placeholder="this.$t('choice-n').replace('{}', i + 1)"> + <input :value="choice" @input="onInput(i, $event)" :placeholder="$t('choice-n').replace('{}', i + 1)"> <button @click="remove(i)" :title="$t('remove')"> <fa icon="times"/> </button> |