Skip to content
Snippets Groups Projects
Unverified Commit 8ecf2027 authored by Anton Georgiev's avatar Anton Georgiev Committed by GitHub
Browse files

Merge pull request #12209 from ritzalam/cutoff-poll-responses

 - lump other responses in the poll and include in the display
parents 2ed5319b 22d43441
No related branches found
No related tags found
No related merge requests found
......@@ -273,10 +273,26 @@ object Polls {
answers += SimpleVoteOutVO(ans.id, ans.key, ans.numVotes)
})
} else {
var highestId = 0
for (i <- 0 until 7) {
val ans = sorted_answers(i)
answers += SimpleVoteOutVO(ans.id, ans.key, ans.numVotes)
if (ans.id > highestId) {
highestId = ans.id
}
}
var otherNumVotes = 0
for (i <- 7 until sorted_answers.length) {
val ans = sorted_answers(i)
otherNumVotes += ans.numVotes
if (ans.id > highestId) {
highestId = ans.id
}
}
answers += SimpleVoteOutVO(highestId + 1, "...", otherNumVotes)
}
shape += "result" -> answers
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment