Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ jobs:
blacklight_version: "~> 8.0"
additional_engine_cart_rails_options: "-a propshaft -j esbuild"
additional_name: "Rails 7.2 / esbuild"
- rails_version: "~> 8.0"
ruby: "3.4"
blacklight_version: "9.0.0.beta1"
additional_engine_cart_rails_options: "-a propshaft -j importmap"
additional_name: "Blacklight 9 beta"
env:
RAILS_VERSION: ${{ matrix.rails_version }}
BLACKLIGHT_VERSION: ${{ matrix.blacklight_version }}
Expand Down
2 changes: 1 addition & 1 deletion app/controllers/concerns/spotlight/catalog.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def add_facet_visibility_field
# rubocop:enable Metrics/MethodLength

def render_curator_actions?
(current_exhibit && can?(:curate, current_exhibit)) &&
current_exhibit && can?(:curate, current_exhibit) &&
!(params[:controller] == 'spotlight/catalog' && params[:action] == 'admin')
end
end
Expand Down
Loading