Files
overleaf-cep/services/web/frontend/js/features/ide-react/components/history-sidebar.tsx
Rebeka Dekany 7c97cbbfe4 Improve landmarks on the Project dashboard and Editor pages (#27401)
* Improve landmarks for the Project Dasbhboard

* Improve landmarks for the IDE page

* Improve landmarks for the new redesigned IDE page

* Sort locales

* Fix typo OlButtonToolbar -> OLButtonToolbar

* Update project navbar translation

* Update labels

* Redundant main landmark

* Fix failing test

* Descriptive name for the rails tab

* Header should not be in a button

* Update translation to Account and help

* Update translation to Project categories and tags

* Add explanations

* Show landmark for the survey widget when it's rendered

* Suggestions for nav stretch/scroll/borders

* Source format

---------

Co-authored-by: Antoine Clausse <antoine.clausse@overleaf.com>
GitOrigin-RevId: d05a738e782d2edb229529aadf92b9004dfd973a
2025-07-29 08:05:16 +00:00

14 lines
311 B
TypeScript

import React from 'react'
import { useTranslation } from 'react-i18next'
export function HistorySidebar() {
const { t } = useTranslation()
return (
<nav
id="history-file-tree"
className="ide-react-editor-sidebar history-file-tree"
aria-label={t('project_files_history')}
/>
)
}