From 2ae6dff64aaf3882d1d14ba6664e6d2a1908978e Mon Sep 17 00:00:00 2001 From: Lucas Pelegrino Date: Thu, 16 Oct 2025 17:05:08 -0300 Subject: [PATCH] chore: fixes typo in the i18nLabel values (#37242) --- apps/meteor/app/meteor-accounts-saml/server/lib/settings.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/meteor/app/meteor-accounts-saml/server/lib/settings.ts b/apps/meteor/app/meteor-accounts-saml/server/lib/settings.ts index 40b39c662a9..02fcdd129b2 100644 --- a/apps/meteor/app/meteor-accounts-saml/server/lib/settings.ts +++ b/apps/meteor/app/meteor-accounts-saml/server/lib/settings.ts @@ -219,9 +219,9 @@ export const addSettings = async function (name: string): Promise { type: 'select', values: [ { key: 'SHA1', i18nLabel: 'SHA1' }, - { key: 'SHA256', i18nLabel: 'A256' }, - { key: 'SHA384', i18nLabel: 'A384' }, - { key: 'SHA512', i18nLabel: 'A512' }, + { key: 'SHA256', i18nLabel: 'SHA256' }, + { key: 'SHA384', i18nLabel: 'SHA384' }, + { key: 'SHA512', i18nLabel: 'SHA512' }, ], i18nLabel: 'SAML_Custom_Signature_Algorithm', i18nDescription: 'SAML_Custom_Signature_Algorithm_description',