From cb5a7714901a334b1141c769b5e6ea030dcacef8 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 10 Jul 2025 15:07:48 +0300 Subject: [PATCH] feat(popup_editor): add editable note title and icon --- apps/client/src/layouts/desktop_layout.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apps/client/src/layouts/desktop_layout.ts b/apps/client/src/layouts/desktop_layout.ts index e522e6f19..4693d76aa 100644 --- a/apps/client/src/layouts/desktop_layout.ts +++ b/apps/client/src/layouts/desktop_layout.ts @@ -260,6 +260,14 @@ export default class DesktopLayout { .child(new PasswordNoteSetDialog()) .child(new UploadAttachmentsDialog()) .child(new PopupEditorDialog() + .child(new FlexContainer("row") + .class("title-row") + .css("height", "50px") + .css("min-height", "50px") + .css("align-items", "center") + .cssBlock(".title-row > * { margin: 5px; }") + .child(new NoteIconWidget()) + .child(new NoteTitleWidget())) .child(new NoteDetailWidget())); applyModals(rootContainer);