From 0753f0d449b627e4448e189e5327f87edd19a804 Mon Sep 17 00:00:00 2001 From: Gilad Shanan <30355046+giladshanan@users.noreply.github.com> Date: Mon, 8 Jul 2024 16:04:59 -0500 Subject: [PATCH] FIX: Display reservation actions for all orders (not just cross core) (#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. --- app/views/facility_orders/_order_table_actions.html.haml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/views/facility_orders/_order_table_actions.html.haml b/app/views/facility_orders/_order_table_actions.html.haml index 23137b1928..0e9b97aab7 100644 --- a/app/views/facility_orders/_order_table_actions.html.haml +++ b/app/views/facility_orders/_order_table_actions.html.haml @@ -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)