Correct variable error

Line 30 was missing the `@` in `@event.speakers.any`, which caused a 500 error when clicking on a session in the program. Corrected the typo.
This commit is contained in:
Brian 2019-12-20 10:38:14 -05:00 committed by GitHub
parent b828a9d6c6
commit 2d31ababaa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,7 +27,7 @@
.row
.col-md-3
%h3
- if event.speakers.any?
- if @event.speakers.any?
Presented by:
- @speakers_ordered.each do |speaker|
.speakerinfo