Browse Source

Declare header entries in the order they are displayed

The notifications entry was declared after the search one, but they are rendered in a different order. This PR switch their declarations, so the order they appear in match their order in the DOM.

Signed-off-by: Louis Chemineau <louis@chmn.me>
tags/v25.0.0beta1
Louis Chemineau 2 years ago
parent
commit
6905b347ea
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      core/templates/layout.user.php

+ 1
- 1
core/templates/layout.user.php View File

@@ -133,8 +133,8 @@ $getUserAvatar = static function (int $size) use ($_): string {
</div>

<div class="header-right">
<div id="notifications"></div>
<div id="unified-search"></div>
<div id="notifications"></div>
<div id="contactsmenu">
<div class="menutoggle" tabindex="0" role="button"
aria-haspopup="true" aria-controls="contactsmenu-menu" aria-expanded="false">

Loading…
Cancel
Save