chore: fixes typo in the i18nLabel values (#37242)

pull/37158/head^2
Lucas Pelegrino 3 months ago committed by GitHub
parent 74f2232bad
commit 2ae6dff64a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      apps/meteor/app/meteor-accounts-saml/server/lib/settings.ts

@ -219,9 +219,9 @@ export const addSettings = async function (name: string): Promise<void> {
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',

Loading…
Cancel
Save