Skip to content

Commit

Permalink
Merge pull request #2262 from samvera/propagate-locale-in-group-form-…
Browse files Browse the repository at this point in the history
…tabs

Propagate locale between group form tabs
  • Loading branch information
bkiahstroud authored Jun 28, 2024
2 parents e7ac989 + a6570c7 commit bca682d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/presenters/hyku/admin/group/navigation_presenter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def edit_tab
name: I18n.t('hyku.admin.groups.nav.attributes'),
controller: 'admin/groups',
action: 'edit',
path: Rails.application.routes.url_helpers.edit_admin_group_path(group_id),
path: Rails.application.routes.url_helpers.edit_admin_group_path(group_id, locale: I18n.locale),
context: params
)
end
Expand All @@ -39,7 +39,7 @@ def members_tab
name: I18n.t('hyku.admin.groups.nav.members'),
controller: 'admin/group_users',
action: 'index',
path: Rails.application.routes.url_helpers.admin_group_users_path(group_id),
path: Rails.application.routes.url_helpers.admin_group_users_path(group_id, locale: I18n.locale),
context: params
)
end
Expand All @@ -49,7 +49,7 @@ def roles_tab
name: I18n.t('hyku.admin.groups.nav.roles'),
controller: 'admin/group_roles',
action: 'index',
path: Rails.application.routes.url_helpers.admin_group_roles_path(group_id),
path: Rails.application.routes.url_helpers.admin_group_roles_path(group_id, locale: I18n.locale),
context: params
)
end
Expand All @@ -59,7 +59,7 @@ def remove_tab
name: I18n.t('hyku.admin.groups.nav.delete'),
controller: 'admin/groups',
action: 'remove',
path: Rails.application.routes.url_helpers.remove_admin_group_path(group_id),
path: Rails.application.routes.url_helpers.remove_admin_group_path(group_id, locale: I18n.locale),
context: params
)
end
Expand Down

0 comments on commit bca682d

Please sign in to comment.