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:
Tom Moor
2026-03-31 08:12:05 -04:00
committed by GitHub
parent 6e95aa441b
commit 222de9ef01
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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
),
+1 -1
View File
@@ -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",