Skip to content
Open
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changelog

- Fix Handling of "Only Show Admins" Filter [#3473](https://github.com/DMPRoadmap/roadmap/pull/3473)
- Refactor Plan.deep_copy(plan) [#3469](https://github.com/DMPRoadmap/roadmap/pull/3469)
- Fixed a bug in the deep copy of plans where the old identifier was being copied into the new plan. We now copy the generated id of the new plan to the identifier field.
- Fixed bar chart click function in the Usage dashboard (GitHub issue #3443)
Expand Down
2 changes: 1 addition & 1 deletion app/controllers/paginable/users_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def index
paginable_renderise(
partial: 'index',
scope: scope,
query_params: { sort_field: 'users.surname', sort_direction: :asc },
query_params: { sort_field: 'users.surname', sort_direction: :asc, filter_admin: params[:filter_admin] },
format: :json,
view_all: !current_user.can_super_admin?
)
Expand Down
Loading