From fcdd02fac12398541da20133a06db2be7065e593 Mon Sep 17 00:00:00 2001 From: Alf Eaton Date: Mon, 9 May 2022 12:01:36 +0100 Subject: [PATCH] Merge pull request #7849 from overleaf/ae-menu-bar Change "back to your projects" icon to "home" GitOrigin-RevId: 2620b7efbaa5af38af365596c008b79961b00247 --- .../components/back-to-projects-button.js | 21 ++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/services/web/frontend/js/features/editor-navigation-toolbar/components/back-to-projects-button.js b/services/web/frontend/js/features/editor-navigation-toolbar/components/back-to-projects-button.js index 8574d0b34a..6831fb464b 100644 --- a/services/web/frontend/js/features/editor-navigation-toolbar/components/back-to-projects-button.js +++ b/services/web/frontend/js/features/editor-navigation-toolbar/components/back-to-projects-button.js @@ -1,16 +1,23 @@ import Icon from '../../../shared/components/icon' import { useTranslation } from 'react-i18next' +import { OverlayTrigger, Tooltip } from 'react-bootstrap' function BackToProjectsButton() { const { t } = useTranslation() + return ( - - - + + {t('back_to_your_projects')} + + } + > + + + + ) }