Skip to content

Commit 447636f

Browse files
authored
Merge pull request #3567 from DMPRoadmap/aaron/confirm-merge-partial
Fix rendering of `confirm_merge` partial
2 parents ba95292 + dc579d9 commit 447636f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
- Bump Ruby to v3.1.4 and use `.ruby-version` in CI [#3566](https://github.com/DMPRoadmap/roadmap/pull/3566)
55
- Enable session timeout after 90 minutes of inactivity [#3568](https://github.com/DMPRoadmap/roadmap/pull/3568)
66
- Validate CSV Separator [#3569](https://github.com/DMPRoadmap/roadmap/pull/3569)
7+
- Fix rendering of `confirm_merge` partial [#3567](https://github.com/DMPRoadmap/roadmap/pull/3567)
78

89
## v5.0.1
910
- Updated seeds.rb file for identifier_schemes to include context value and removed logo_url and idenitifier_prefix for Shibboleth (as it was causing issues with SSO). [#3525](https://github.com/DMPRoadmap/roadmap/pull/3525)

app/controllers/super_admin/users_controller.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def search
9191
# WHAT TO RETURN!?!?!
9292
if @users.present? # found a user, or Users, submit for merge
9393
render json: {
94-
form: render_to_string(partial: 'super_admin/users/confirm_merge.html.erb')
94+
form: render_to_string(partial: 'confirm_merge')
9595
}
9696
else # NO USER, re-render w/error?
9797
flash.now[:alert] = 'Unable to find user'

0 commit comments

Comments
 (0)