From 147a5a0bd6735809315d7f70d87878b1d9394e8f Mon Sep 17 00:00:00 2001 From: Miguel de la Cruz Date: Tue, 3 Jun 2025 11:00:53 +0200 Subject: [PATCH] Remove the Beta label from Connected Workspaces (#31275) Co-authored-by: Miguel de la Cruz Co-authored-by: Mattermost Build --- .../channels/src/components/admin_console/admin_definition.tsx | 2 +- .../admin_console/secure_connections/secure_connections.tsx | 2 +- webapp/channels/src/i18n/en.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/webapp/channels/src/components/admin_console/admin_definition.tsx b/webapp/channels/src/components/admin_console/admin_definition.tsx index 26d09a00f3..60980bb22a 100644 --- a/webapp/channels/src/components/admin_console/admin_definition.tsx +++ b/webapp/channels/src/components/admin_console/admin_definition.tsx @@ -3509,7 +3509,7 @@ const AdminDefinition: AdminDefinitionType = { }, secure_connections: { url: 'site_config/secure_connections', - title: defineMessage({id: 'admin.sidebar.secureConnections', defaultMessage: 'Connected Workspaces (Beta)'}), + title: defineMessage({id: 'admin.sidebar.secureConnections', defaultMessage: 'Connected Workspaces'}), searchableStrings: secureConnectionsSearchableStrings, isHidden: it.not(it.all( it.configIsTrue('ConnectedWorkspacesSettings', 'EnableSharedChannels'), diff --git a/webapp/channels/src/components/admin_console/secure_connections/secure_connections.tsx b/webapp/channels/src/components/admin_console/secure_connections/secure_connections.tsx index 53a4c58ec7..a10d828996 100644 --- a/webapp/channels/src/components/admin_console/secure_connections/secure_connections.tsx +++ b/webapp/channels/src/components/admin_console/secure_connections/secure_connections.tsx @@ -167,7 +167,7 @@ const AddMenu = ({buttonClassNames, disabled}: {buttonClassNames?: string; disab }; const msg = defineMessages({ - pageTitle: {id: 'admin.sidebar.secureConnections', defaultMessage: 'Connected Workspaces (Beta)'}, + pageTitle: {id: 'admin.sidebar.secureConnections', defaultMessage: 'Connected Workspaces'}, title: {id: 'admin.secure_connections.title', defaultMessage: 'Connected Workspaces'}, subtitle: {id: 'admin.secure_connections.subtitle', defaultMessage: 'Connected workspaces with this server'}, placeholderTitle: {id: 'admin.secure_connections.placeholder.title', defaultMessage: 'Share channels'}, diff --git a/webapp/channels/src/i18n/en.json b/webapp/channels/src/i18n/en.json index 13bce3d0ad..680ecff150 100644 --- a/webapp/channels/src/i18n/en.json +++ b/webapp/channels/src/i18n/en.json @@ -2654,7 +2654,7 @@ "admin.sidebar.reporting": "Reporting", "admin.sidebar.restricted_indicator.tooltip.message.blocked": "This is {article} {minimumPlanRequiredForFeature} feature, available with an upgrade or free {trialLength}-day trial", "admin.sidebar.saml": "SAML 2.0", - "admin.sidebar.secureConnections": "Connected Workspaces (Beta)", + "admin.sidebar.secureConnections": "Connected Workspaces", "admin.sidebar.sessionLengths": "Session Lengths", "admin.sidebar.signup": "Signup", "admin.sidebar.site": "Site Configuration",