From c11e813146e6afa3176c6863a2ca3b041cf8e378 Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 7 Mar 2019 09:35:23 +0900 Subject: [PATCH] Fix --- src/client/app/common/views/components/poll.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/app/common/views/components/poll.vue b/src/client/app/common/views/components/poll.vue index 8a0fb54a6..ba14ba3a4 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; }); } }