mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
fix: Unconnected integrations appearing in settings sidebar (#11913)
* fix: Integrations list missing when language is not English
The group filter on the Integrations settings page compared against the
hardcoded string "Integrations" instead of the translated value from
t("Integrations"), causing no integrations to appear in non-English locales.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* fix: Sidebar shows unconnected integrations in non-English locales
Same hardcoded "Integrations" string comparison issue as the main
integrations page — the sidebar filter skipped the connected-check
when the translated group name didn't match the English literal.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -31,7 +31,7 @@ function SettingsSidebar() {
|
||||
|
||||
const groupedConfig = groupBy(
|
||||
configs.filter((item) =>
|
||||
item.group === "Integrations" && item.pluginId
|
||||
item.group === t("Integrations") && item.pluginId
|
||||
? integrations.findByService(item.pluginId)
|
||||
: true
|
||||
),
|
||||
|
||||
@@ -513,6 +513,7 @@
|
||||
"{{ documentName }} cannot be moved within {{ parentDocumentName }}": "{{ documentName }} cannot be moved within {{ parentDocumentName }}",
|
||||
"You can't reorder documents in an alphabetically sorted collection": "You can't reorder documents in an alphabetically sorted collection",
|
||||
"{{ documentName }} cannot be moved here": "{{ documentName }} cannot be moved here",
|
||||
"Integrations": "Integrations",
|
||||
"Return to App": "Back to App",
|
||||
"Installation": "Installation",
|
||||
"Unstar document": "Unstar document",
|
||||
@@ -684,7 +685,6 @@
|
||||
"Import": "Import",
|
||||
"Embeds": "Embeds",
|
||||
"Configure which embed providers are available in the editor.": "Configure which embed providers are available in the editor.",
|
||||
"Integrations": "Integrations",
|
||||
"Install": "Install",
|
||||
"Change name": "Change name",
|
||||
"Change email": "Change email",
|
||||
|
||||
Reference in New Issue
Block a user