From f5e3df0cd21cb025d94049ae8f63394e2fd1e463 Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Sun, 30 Nov 2025 01:54:28 +0200 Subject: [PATCH] client/quick edit: add placeholder for "open in full editor" custom title bar button --- apps/client/src/widgets/dialogs/PopupEditor.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/client/src/widgets/dialogs/PopupEditor.tsx b/apps/client/src/widgets/dialogs/PopupEditor.tsx index 1a065c05f..0d158f828 100644 --- a/apps/client/src/widgets/dialogs/PopupEditor.tsx +++ b/apps/client/src/widgets/dialogs/PopupEditor.tsx @@ -60,6 +60,11 @@ export default function PopupEditor() { } + customTitleBarButtons={[{ + iconClassName: "bx-expand-alt", + title: "Switch to full editor", + onClick: () => {/* TO DO */} + }]} className="popup-editor-dialog" size="lg" show={shown}