feat(popup_editor): support collections

This commit is contained in:
Elian Doran
2025-07-10 19:39:08 +03:00
parent 59ce2072c5
commit 27738acefc
2 changed files with 21 additions and 4 deletions

View File

@@ -230,7 +230,7 @@ export default class DesktopLayout {
.child(new PromotedAttributesWidget())
.child(new SqlTableSchemasWidget())
.child(new NoteDetailWidget())
.child(new NoteListWidget())
.child(new NoteListWidget(false))
.child(new SearchResultWidget())
.child(new SqlResultWidget())
.child(new ScrollPaddingWidget())
@@ -268,7 +268,8 @@ export default class DesktopLayout {
.child(new NoteTitleWidget()))
.child(new ClassicEditorToolbar())
.child(new PromotedAttributesWidget())
.child(new NoteDetailWidget()));
.child(new NoteDetailWidget())
.child(new NoteListWidget(true)));
applyModals(rootContainer);
return rootContainer;