feat(popup_editor): display promoted attributes

This commit is contained in:
Elian Doran 2025-07-10 19:19:44 +03:00
parent ed68dda70b
commit 59ce2072c5
No known key found for this signature in database
2 changed files with 1 additions and 5 deletions

View File

@ -267,6 +267,7 @@ export default class DesktopLayout {
.child(new NoteIconWidget())
.child(new NoteTitleWidget()))
.child(new ClassicEditorToolbar())
.child(new PromotedAttributesWidget())
.child(new NoteDetailWidget()));
applyModals(rootContainer);

View File

@ -69,11 +69,6 @@ interface AttributeResult {
attributeId: string;
}
/**
* This widget is quite special because it's used in the desktop ribbon, but in mobile outside of ribbon.
* This works without many issues (apart from autocomplete), but it should be kept in mind when changing things
* and testing.
*/
export default class PromotedAttributesWidget extends NoteContextAwareWidget {
private $container!: JQuery<HTMLElement>;