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:
parent
b828a9d6c6
commit
2d31ababaa
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@
|
||||||
.row
|
.row
|
||||||
.col-md-3
|
.col-md-3
|
||||||
%h3
|
%h3
|
||||||
- if event.speakers.any?
|
- if @event.speakers.any?
|
||||||
Presented by:
|
Presented by:
|
||||||
- @speakers_ordered.each do |speaker|
|
- @speakers_ordered.each do |speaker|
|
||||||
.speakerinfo
|
.speakerinfo
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue