diff --git a/src/public/app/layouts/desktop_layout.js b/src/public/app/layouts/desktop_layout.js index fd4aff19f..1fc15fb69 100644 --- a/src/public/app/layouts/desktop_layout.js +++ b/src/public/app/layouts/desktop_layout.js @@ -140,7 +140,6 @@ export default class DesktopLayout { // the order of the widgets matter. Some of these want to "activate" themselves // when visible. When this happens to multiple of them, the first one "wins". // promoted attributes should always win. - .ribbon(new PromotedAttributesWidget()) .ribbon(new ScriptExecutorWidget()) .ribbon(new SearchDefinitionWidget()) .ribbon(new EditedNotesWidget()) @@ -157,7 +156,7 @@ export default class DesktopLayout { .ribbon(new NoteInfoWidget()) .button(new RevisionsButton()) .button(new NoteActionsWidget()) - ) + ) .child(new SharedInfoWidget()) .child(new WatchedFileUpdateStatusWidget()) .child(new FloatingButtons() @@ -175,6 +174,7 @@ export default class DesktopLayout { .child( new ScrollingContainer() .filling() + .child(new PromotedAttributesWidget()) .child(new SqlTableSchemasWidget()) .child(new NoteDetailWidget()) .child(new NoteListWidget())