feat(popup_editor): add editable note title and icon

This commit is contained in:
Elian Doran 2025-07-10 15:07:48 +03:00
parent 0c17a13462
commit cb5a771490
No known key found for this signature in database

View File

@ -260,6 +260,14 @@ export default class DesktopLayout {
.child(new PasswordNoteSetDialog()) .child(new PasswordNoteSetDialog())
.child(new UploadAttachmentsDialog()) .child(new UploadAttachmentsDialog())
.child(new PopupEditorDialog() .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())); .child(new NoteDetailWidget()));
applyModals(rootContainer); applyModals(rootContainer);