放宽编辑器快捷键焦点限制

仅将文本输入控件视为可编辑目标\n保持工具栏按钮聚焦时仍可使用撤销重做快捷键
This commit is contained in:
2026-09-03 11:54:27 +08:00
parent e616e2c899
commit 95f5904b92
@@ -87,9 +87,7 @@ export default function UiEditorPage({
const element = target instanceof HTMLElement ? target : null;
return Boolean(
element?.isContentEditable ||
element?.closest(
'input, textarea, select, button, a, [contenteditable="true"], [role="button"]',
),
element?.closest('input, textarea, select, [contenteditable="true"]'),
);
};
const onKeyDown = (event: KeyboardEvent) => {