mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-14 13:25:12 +00:00
@@ -247,6 +247,10 @@ export const BlocksuiteDocEditor = forwardRef<
|
||||
)
|
||||
);
|
||||
|
||||
const displayDocInfo = useLiveData(
|
||||
editorSettingService.editorSetting.settings$.selector(s => s.displayDocInfo)
|
||||
);
|
||||
|
||||
return (
|
||||
<>
|
||||
<div className={styles.affineDocViewport} style={{ height: '100%' }}>
|
||||
@@ -255,7 +259,7 @@ export const BlocksuiteDocEditor = forwardRef<
|
||||
) : (
|
||||
<BlocksuiteEditorJournalDocTitle page={page} />
|
||||
)}
|
||||
{!shared ? (
|
||||
{!shared && displayDocInfo ? (
|
||||
<DocPropertiesTable defaultOpenProperty={defaultOpenProperty} />
|
||||
) : null}
|
||||
<adapted.DocEditor
|
||||
|
||||
@@ -10,6 +10,7 @@ export const root = style({
|
||||
width: '100%',
|
||||
justifyContent: 'center',
|
||||
fontFamily: cssVar('fontSansFamily'),
|
||||
paddingBottom: '18px',
|
||||
vars: {
|
||||
[propertyNameCellWidth]: '160px',
|
||||
[fontSize]: cssVar('fontSm'),
|
||||
@@ -41,6 +42,7 @@ export const tableHeader = style({
|
||||
display: 'flex',
|
||||
height: 30,
|
||||
padding: 4,
|
||||
marginBottom: '8px',
|
||||
justifyContent: 'space-between',
|
||||
alignItems: 'center',
|
||||
color: cssVarV2('text/secondary'),
|
||||
|
||||
Reference in New Issue
Block a user