Skip to content

Commit

Permalink
FIX: Display reservation actions for all orders (not just cross core) (
Browse files Browse the repository at this point in the history
…#4418)

In an earlier ticket (#162254) we made a change to the redirect for the Reservation Actions, and mistakenly removed those action links for non-cross-core reservations.
  • Loading branch information
giladshanan authored Jul 8, 2024
1 parent 5d8b59b commit 0753f0d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/views/facility_orders/_order_table_actions.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
= link_to facility_order_order_detail_url(current_facility, @order, od, format: :ics) do
= tooltip_icon "fa fa-calendar", t("ical.calendar_tooltip")
%span= t("views.facility_orders.show.order_table.download")

- delimiter = " | ".html_safe
= delimiter
- if cross_core
= reservation_actions(od.reservation, redirect_to_order_id: @order.id)
- else
= reservation_actions(od.reservation)

0 comments on commit 0753f0d

Please sign in to comment.