diff options
author | Louis Chemineau <louis@chmn.me> | 2022-06-02 11:22:59 +0200 |
---|---|---|
committer | Louis Chemineau <louis@chmn.me> | 2022-06-02 11:22:59 +0200 |
commit | 6905b347ea09e13177200c74e0823be10e28d174 (patch) | |
tree | a94ede3be848f63b4ca117226266a11fb3f5f62a /core/templates | |
parent | cc65bfe6243c954d1401bff870814701cb4c3241 (diff) | |
download | nextcloud-server-6905b347ea09e13177200c74e0823be10e28d174.tar.gz nextcloud-server-6905b347ea09e13177200c74e0823be10e28d174.zip |
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>
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/layout.user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 82626733bd2..eafca3da1bd 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -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"> |