a tool for shared writing and social publishing
0
fork

Configure Feed

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

don't double outdent/indent multi-selected blocks

+1
+1
components/Blocks/useBlockKeyboardHandlers.ts
··· 92 92 93 93 function Tab({ e, props, rep }: Args) { 94 94 // if tab or shift tab, indent or outdent 95 + if (useUIState.getState().selectedBlocks.length > 1) return false; 95 96 if (e.shiftKey) { 96 97 e.preventDefault(); 97 98 outdent(props, props.previousBlock, rep);