1
0
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:
Daniël Klabbers
2022-07-14 10:44:39 +02:00
committed by GitHub
parent d3e456a1bf
commit 33bf2284c7

View File

@@ -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',