From e63b3002795c0d2abd0130e4cf157026e2b7081c Mon Sep 17 00:00:00 2001 From: syuilo <syuilotan@yahoo.co.jp> 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; }); } }