diff --git a/CHANGELOG.md b/CHANGELOG.md index 949df96bb..e9cd99dff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,7 @@ and this project adheres to - 🐛(backend) prevent admins/owners from overwriting other users comments - 🐛(y-provider) return empty output when converting empty Yjs document - 🐛(backend) use computed_link_reach in handle_onboarding_document #2305 +- 🐛(frontend) fix application crashes when using GTranslate and zoom #2372 - 🐛(frontend) fix emoji pdf not matching #2375 ### Changed diff --git a/src/frontend/apps/impress/src/layouts/PageLayout.tsx b/src/frontend/apps/impress/src/layouts/PageLayout.tsx index 4969008a4..44746e4c5 100644 --- a/src/frontend/apps/impress/src/layouts/PageLayout.tsx +++ b/src/frontend/apps/impress/src/layouts/PageLayout.tsx @@ -12,11 +12,13 @@ import { MAIN_LAYOUT_ID } from './conf'; interface PageLayoutProps { withFooter?: boolean; + withLeftPanel?: boolean; } export function PageLayout({ children, withFooter = true, + withLeftPanel = true, }: PropsWithChildren) { const { isLargeScreen } = useResponsiveStore(); const { t } = useTranslation(); @@ -45,7 +47,7 @@ export function PageLayout({ `} aria-label={t('Main content')} > - {!isLargeScreen && } + {withLeftPanel && !isLargeScreen && } {children} {withFooter &&