mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
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
|
||||
.col-md-3
|
||||
%h3
|
||||
- if event.speakers.any?
|
||||
- if @event.speakers.any?
|
||||
Presented by:
|
||||
- @speakers_ordered.each do |speaker|
|
||||
.speakerinfo
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue