Refactoring

This commit is contained in:
syuilo 2017-09-08 20:49:53 +09:00
parent 69ab594ac7
commit e1aea70154
1 changed files with 10 additions and 7 deletions

View File

@ -140,7 +140,10 @@ const self = (
}); });
if (vote != null) { if (vote != null) {
_post.poll.choices.filter(c => c.id == vote.choice)[0].is_voted = true; const myChoice = _post.poll.choices
.filter(c => c.id == vote.choice)[0];
myChoice.is_voted = true;
} }
} }