Compare commits

..

4 Commits

Author SHA1 Message Date
Philipinho 55537cd090 fix 2026-05-19 02:40:58 +01:00
Philipinho cc691d1138 fix tree 2026-05-19 02:37:14 +01:00
Philipinho 1997610cb8 Merge branch 'main' into feat/templates 2026-05-19 02:04:30 +01:00
Philipinho bf9ea63247 feat(ee): templates 2026-05-19 02:03:27 +01:00
@@ -238,6 +238,14 @@ export default function PageEditor({
event.preventDefault(); event.preventDefault();
return true; return true;
} }
if (event.key === "Tab") {
const editor = editorRef.current;
if (!editor) return false;
event.preventDefault();
return editor.view.someProp("handleKeyDown", (f) =>
f(editor.view, event)
);
}
if (platformModifierKey(event) && event.code === "KeyK") { if (platformModifierKey(event) && event.code === "KeyK") {
searchSpotlight.open(); searchSpotlight.open();
return true; return true;