diff --git a/src/languages/en.ts b/src/languages/en.ts index 591f7eb0ed42d..a063e6a9dda68 100755 --- a/src/languages/en.ts +++ b/src/languages/en.ts @@ -2462,6 +2462,7 @@ const translations = { memberNotFound: 'Member not found. To invite a new member to the workspace, please use the invite button above.', notAuthorized: `You don't have access to this page. If you're trying to join this workspace, just ask the workspace owner to add you as a member. Something else? Reach out to ${CONST.EMAIL.CONCIERGE}.`, goToRoom: ({roomName}: GoToRoomParams) => `Go to ${roomName} room`, + goToWorkspace: 'Go to workspace', workspaceName: 'Workspace name', workspaceOwner: 'Owner', workspaceType: 'Workspace type', diff --git a/src/languages/es.ts b/src/languages/es.ts index ac071dd2a48fb..ff0371b9005b9 100644 --- a/src/languages/es.ts +++ b/src/languages/es.ts @@ -2485,6 +2485,7 @@ const translations = { memberNotFound: 'Miembro no encontrado. Para invitar a un nuevo miembro al espacio de trabajo, por favor, utiliza el botón invitar que está arriba.', notAuthorized: `No tienes acceso a esta página. Si estás intentando unirte a este espacio de trabajo, pide al dueño del espacio de trabajo que te añada como miembro. ¿Necesitas algo más? Comunícate con ${CONST.EMAIL.CONCIERGE}`, goToRoom: ({roomName}: GoToRoomParams) => `Ir a la sala ${roomName}`, + goToWorkspace: 'Ir al espacio de trabajo', workspaceName: 'Nombre del espacio de trabajo', workspaceOwner: 'Dueño', workspaceType: 'Tipo de espacio de trabajo', diff --git a/src/pages/workspace/WorkspacesListPage.tsx b/src/pages/workspace/WorkspacesListPage.tsx index 67369bf7bd884..2abab020857f8 100755 --- a/src/pages/workspace/WorkspacesListPage.tsx +++ b/src/pages/workspace/WorkspacesListPage.tsx @@ -156,7 +156,13 @@ function WorkspacesListPage() { // Menu options to navigate to the chat report of #admins and #announce room. // For navigation, the chat report ids may be unavailable due to the missing chat reports in Onyx. // In such cases, let us use the available chat report ids from the policy. - const threeDotsMenuItems: PopoverMenuItem[] = []; + const threeDotsMenuItems: PopoverMenuItem[] = [ + { + icon: Expensicons.Building, + text: translate('workspace.common.goToWorkspace'), + onSelected: item.action, + }, + ]; if (isOwner) { threeDotsMenuItems.push({ @@ -366,7 +372,6 @@ function WorkspacesListPage() { const getHeaderButton = () => (