From 7f3979411655ef5f65ce4918fe0f8f214403f75e Mon Sep 17 00:00:00 2001 From: Rowan Murphy Date: Sat, 9 Aug 2025 11:43:50 -0500 Subject: [PATCH] docs: change comma-separated lists to space-separated Changed documentation for scopes and required claims lists to correctly reflect source code showing space-separated instead of comma-separated. --- docs/using-jellyseerr/settings/users/oidc.md | 4 ++-- src/components/Settings/EditOidcModal/index.tsx | 4 ++-- src/i18n/locale/en.json | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/using-jellyseerr/settings/users/oidc.md b/docs/using-jellyseerr/settings/users/oidc.md index 5bc1c05f..ac19ddc2 100644 --- a/docs/using-jellyseerr/settings/users/oidc.md +++ b/docs/using-jellyseerr/settings/users/oidc.md @@ -50,11 +50,11 @@ Unique identifier for the provider ### Scopes -Comma-separated list of scopes to request from the provider +Space-separated list of scopes to request from the provider ### Required Claims -Comma-separated list of boolean claims that are required to log in +Space-separated list of boolean claims that are required to log in ### Allow New Users diff --git a/src/components/Settings/EditOidcModal/index.tsx b/src/components/Settings/EditOidcModal/index.tsx index 9f4b831f..e505d1df 100644 --- a/src/components/Settings/EditOidcModal/index.tsx +++ b/src/components/Settings/EditOidcModal/index.tsx @@ -35,10 +35,10 @@ const messages = defineMessages('settings.settings.SettingsOidc', { oidcLogoTip: 'The logo to display for the provider. Should be a URL or base64 encoded image', oidcScopes: 'Scopes', - oidcScopesTip: 'Comma-separated list of scopes to request from the provider', + oidcScopesTip: 'Space-separated list of scopes to request from the provider', oidcRequiredClaims: 'Required Claims', oidcRequiredClaimsTip: - 'Comma-separated list of boolean claims that are required to log in', + 'Space-separated list of boolean claims that are required to log in', oidcNewUserLogin: 'Allow New Users', oidcNewUserLoginTip: 'Create accounts for new users logging in with this provider', diff --git a/src/i18n/locale/en.json b/src/i18n/locale/en.json index e5d6f204..63249708 100644 --- a/src/i18n/locale/en.json +++ b/src/i18n/locale/en.json @@ -1619,9 +1619,9 @@ "settings.settings.SettingsOidc.oidcNewUserLogin": "Allow New Users", "settings.settings.SettingsOidc.oidcNewUserLoginTip": "Create accounts for new users logging in with this provider", "settings.settings.SettingsOidc.oidcRequiredClaims": "Required Claims", - "settings.settings.SettingsOidc.oidcRequiredClaimsTip": "Comma-separated list of boolean claims that are required to log in", + "settings.settings.SettingsOidc.oidcRequiredClaimsTip": "Space-separated list of boolean claims that are required to log in", "settings.settings.SettingsOidc.oidcScopes": "Scopes", - "settings.settings.SettingsOidc.oidcScopesTip": "Comma-separated list of scopes to request from the provider", + "settings.settings.SettingsOidc.oidcScopesTip": "Space-separated list of scopes to request from the provider", "settings.settings.SettingsOidc.oidcSlug": "Provider Slug", "settings.settings.SettingsOidc.oidcSlugTip": "Unique identifier for the provider", "settings.settings.SettingsOidc.required": "{field} is required",