diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-03-07 09:35:23 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-03-07 09:35:23 +0900 |
| commit | c11e813146e6afa3176c6863a2ca3b041cf8e378 (patch) | |
| tree | fd84b9dc8062f8c85f7f3bfdff24d17d5ac619c4 /src | |
| parent | Merge branch 'develop' of https://github.com/syuilo/misskey into develop (diff) | |
| download | misskey-c11e813146e6afa3176c6863a2ca3b041cf8e378.tar.gz misskey-c11e813146e6afa3176c6863a2ca3b041cf8e378.tar.bz2 misskey-c11e813146e6afa3176c6863a2ca3b041cf8e378.zip | |
Fix
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/common/views/components/poll.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/views/components/poll.vue b/src/client/app/common/views/components/poll.vue index 8a0fb54a64..ba14ba3a44 100644 --- a/src/client/app/common/views/components/poll.vue +++ b/src/client/app/common/views/components/poll.vue @@ -88,7 +88,7 @@ export default Vue.extend({ Vue.set(c, 'isVoted', true); } } - this.showResult = !this.poll.multiple; + if (!this.showResult) this.showResult = !this.poll.multiple; }); } } |