Browse Source

Fix existing bug in schemes nav item highlighting

pull/2062/head
Rachael Booth 3 years ago
parent
commit
0519ff9cae
  1. 2
      app/helpers/navigation_items_helper.rb

2
app/helpers/navigation_items_helper.rb

@ -57,7 +57,7 @@ private
end
def supported_housing_schemes_current?(path)
path == schemes_path || path.include?("/schemes/")
path == schemes_path || (path.include?("/organisations") && path.include?("/schemes")) || path.include?("/schemes/")
end
def organisations_current?(path)

Loading…
Cancel
Save