a tool for shared writing and social publishing
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fixed issue where if first block was a heading, new block button would show block options on hover, causeing it to look like there were two repeated block options

celine 310ee3a0 9bd2fff7

+1 -1
+1 -1
components/Blocks/index.tsx
··· 111 111 ); 112 112 if (!entity_set.permissions.write) return null; 113 113 if ( 114 - props.lastBlock?.type === "text" && 114 + (props.lastBlock?.type === "text" || props.lastBlock?.type === "heading") && 115 115 (!editorState?.editor || editorState.editor.doc.content.size <= 2) 116 116 ) 117 117 return null;