mirror of
https://github.com/flarum/core.git
synced 2025-07-31 13:40:20 +02:00
fix: core settings header has no priority
Due to missing sort the category title sorts underneath the core settings nav items.
This commit is contained in:
@@ -60,7 +60,7 @@ export default class AdminNav extends Component {
|
||||
items() {
|
||||
const items = new ItemList();
|
||||
|
||||
items.add('category-core', <h4 className="ExtensionListTitle">{app.translator.trans('core.admin.nav.categories.core')}</h4>);
|
||||
items.add('category-core', <h4 className="ExtensionListTitle">{app.translator.trans('core.admin.nav.categories.core')}</h4>, 120);
|
||||
|
||||
items.add(
|
||||
'dashboard',
|
||||
|
Reference in New Issue
Block a user