Skip to content

Commit

Permalink
Merge 3dc6596 into 6b50602
Browse files Browse the repository at this point in the history
  • Loading branch information
matyikriszta committed Dec 11, 2023
2 parents 6b50602 + 3dc6596 commit 2a1ad2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions app/controllers/meetings_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ def show
private

def set_meeting
@meeting = Meeting.find_by(slug: params[:id])
@map_address = AddressPresenter.new(@meeting.venue.address).for_map
@meeting = Meeting.find_by!(slug: params[:id])
end
end
2 changes: 1 addition & 1 deletion app/views/meetings/show.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

.col-md-7.col-sm-12
%h4 Agenda
%p= @meeting.description.html_safe
%p= sanitize(@meeting.description)

.py-4.py-lg-5.bg-light
.container
Expand Down

0 comments on commit 2a1ad2c

Please sign in to comment.