summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-03-07 09:35:23 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-03-07 09:35:23 +0900
commitc11e813146e6afa3176c6863a2ca3b041cf8e378 (patch)
treefd84b9dc8062f8c85f7f3bfdff24d17d5ac619c4 /src
parentMerge branch 'develop' of https://github.com/syuilo/misskey into develop (diff)
downloadmisskey-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.vue2
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;
});
}
}