about summary refs log tree commit diff
path: root/app/views/stream_entries/_poll.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/stream_entries/_poll.html.haml')
-rw-r--r--app/views/stream_entries/_poll.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/stream_entries/_poll.html.haml b/app/views/stream_entries/_poll.html.haml
index c7e5e0c63..dad04b79c 100644
--- a/app/views/stream_entries/_poll.html.haml
+++ b/app/views/stream_entries/_poll.html.haml
@@ -7,7 +7,7 @@
     - options.each do |option|
       %li
         - if show_results
-          - percent = 100 * option.votes_count / poll.votes_count
+          - percent = poll.votes_count > 0 ? 100 * option.votes_count / poll.votes_count : 0
           %span.poll__chart{ style: "width: #{percent}%" }
 
           %label.poll__text><