fix(mobile): do not show toc in doc peek view (#9348)

fix AF-2025
This commit is contained in:
pengx17
2024-12-27 05:48:50 +00:00
parent 893493cf01
commit b3933e8bf8

View File

@@ -159,11 +159,13 @@ function DocPeekPreviewEditor({
</Scrollable.Viewport> </Scrollable.Viewport>
<Scrollable.Scrollbar /> <Scrollable.Scrollbar />
</Scrollable.Root> </Scrollable.Root>
<EditorOutlineViewer {!BUILD_CONFIG.isMobileEdition && !BUILD_CONFIG.isMobileWeb ? (
editor={editorElement} <EditorOutlineViewer
show={mode === 'page'} editor={editorElement}
openOutlinePanel={openOutlinePanel} show={mode === 'page'}
/> openOutlinePanel={openOutlinePanel}
/>
) : null}
</AffineErrorBoundary> </AffineErrorBoundary>
); );
} }