feat: fix backspeace

This commit is contained in:
SaikaSakura
2022-08-10 16:07:52 +08:00
parent 4c9f04bc1c
commit 8183552011
2 changed files with 15 additions and 7 deletions
@@ -83,6 +83,9 @@ export const CommandMenu = ({ editor, hooks, style }: CommandMenuProps) => {
async (event: React.KeyboardEvent<HTMLDivElement>) => {
const { type, anchorNode } = editor.selection.currentSelectInfo;
// console.log(await editor.getBlockById(anchorNode.id));
if (!anchorNode?.id) {
return;
}
const activeBlock = await editor.getBlockById(anchorNode.id);
if (activeBlock.type === Protocol.Block.Type.page) {
return;