Skip to content

Commit

Permalink
Merge pull request #14021 from nextcloud/bugfix/noid/app-sort-order
Browse files Browse the repository at this point in the history
fix(navigation): Improve sort order of navigation entry
  • Loading branch information
nickvergessen authored Dec 18, 2024
2 parents bab0241 + ec1723c commit acf8f40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/AppInfo/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ public function registerNavigationLink(INavigationManager $navigationManager): v
'name' => $l->t('Talk'),
'href' => $urlGenerator->linkToRouteAbsolute('spreed.Page.index'),
'icon' => $urlGenerator->imagePath(self::APP_ID, 'app.svg'),
'order' => 3,
'order' => -5,
'type' => $user instanceof IUser && !$config->isDisabledForUser($user) ? 'link' : 'hidden',
];
});
Expand Down

0 comments on commit acf8f40

Please sign in to comment.