mirror of
https://github.com/flarum/framework.git
synced 2025-02-18 12:33:22 +08: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:
parent
d3e456a1bf
commit
33bf2284c7
|
@ -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',
|
||||
|
|
Loading…
Reference in New Issue
Block a user