From 4f8549b8ba6cd4fe39cc79520342b0576a568f51 Mon Sep 17 00:00:00 2001 From: fantasticit Date: Sun, 18 Sep 2022 13:11:44 +0800 Subject: [PATCH] close #186 --- packages/client/src/tiptap/core/menus/commands.tsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/packages/client/src/tiptap/core/menus/commands.tsx b/packages/client/src/tiptap/core/menus/commands.tsx index 1b005c87..12dddfc1 100644 --- a/packages/client/src/tiptap/core/menus/commands.tsx +++ b/packages/client/src/tiptap/core/menus/commands.tsx @@ -73,7 +73,10 @@ export const COMMANDS: ICommand[] = [ onSelect={({ rows, cols }) => { return runCommand({ label: '表格', - action: () => editor.chain().focus().insertTable({ rows, cols, withHeaderRow: true }).run(), + action: () => { + editor.chain().focus().run(); + editor.chain().insertTable({ rows, cols, withHeaderRow: true }).focus().run(); + }, })(); }} /> @@ -105,7 +108,10 @@ export const COMMANDS: ICommand[] = [ onSelect={({ cols }) => { return runCommand({ label: '布局', - action: () => editor.chain().focus().setColumns({ type: 'left-right', columns: cols }).run(), + action: () => { + editor.chain().focus().run(); + editor.chain().setColumns({ type: 'left-right', columns: cols }).focus().run(); + }, })(); }} />