From b86759d7a733ff352a36c3b0d97d3628bc6f211e Mon Sep 17 00:00:00 2001 From: Matt-Yorkley <9029026+Matt-Yorkley@users.noreply.github.com> Date: Sun, 22 Dec 2019 15:25:33 +0100 Subject: [PATCH] Fix form rendering in admin orders ActionView::Template::Error: Nil location provided. Can't build URI. 0) Account and Billing Settings updating as an admin user loads the page Failure/Error: = form_tag false, {name: "orders_form", "ng-submit" => "fetchResults()"} do --- app/views/spree/admin/orders/_filters.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/spree/admin/orders/_filters.html.haml b/app/views/spree/admin/orders/_filters.html.haml index ef0348a6f0..b41c2d194a 100644 --- a/app/views/spree/admin/orders/_filters.html.haml +++ b/app/views/spree/admin/orders/_filters.html.haml @@ -1,5 +1,5 @@ %div{"data-hook" => "admin_orders_index_search"} - = form_tag false, {name: "orders_form", "ng-submit" => "fetchResults()"} do + = form_tag nil, {name: "orders_form", "ng-submit" => "fetchResults()"} do .field-block.alpha.four.columns .date-range-filter.field = label_tag nil, t(:date_range)