From b9ad3964af113ee1e7f651bc03582eda42c30337 Mon Sep 17 00:00:00 2001 From: Henriette Darge Date: Fri, 2 Aug 2024 14:27:40 +0200 Subject: [PATCH] Change 2fa administration page title to match with the sidebar --- .../app/views/two_factor_authentication/settings.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/two_factor_authentication/app/views/two_factor_authentication/settings.html.erb b/modules/two_factor_authentication/app/views/two_factor_authentication/settings.html.erb index 31a52b1145a8..8c757951f4a1 100644 --- a/modules/two_factor_authentication/app/views/two_factor_authentication/settings.html.erb +++ b/modules/two_factor_authentication/app/views/two_factor_authentication/settings.html.erb @@ -2,10 +2,10 @@ <%= render Primer::OpenProject::PageHeader.new do |header| - header.with_title { I18n.t("two_factor_authentication.settings.title") } + header.with_title { I18n.t("two_factor_authentication.label_two_factor_authentication") } header.with_breadcrumbs([{ href: admin_index_path, text: t(:label_administration) }, { href: admin_settings_authentication_path, text: t(:label_authentication) }, - I18n.t("two_factor_authentication.settings.title")]) + I18n.t("two_factor_authentication.label_two_factor_authentication")]) end %>