Skip to content

Commit a840eaf

Browse files
authored
Merge pull request #19326 from netbox-community/17812-nav-menu-ordering
Closes #17812: Reorder "sites" in the navigation menu
2 parents a000663 + 41f475a commit a840eaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

netbox/netbox/navigation/menu.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
MenuGroup(
1515
label=_('Sites'),
1616
items=(
17-
get_model_item('dcim', 'site', _('Sites')),
1817
get_model_item('dcim', 'region', _('Regions')),
1918
get_model_item('dcim', 'sitegroup', _('Site Groups')),
19+
get_model_item('dcim', 'site', _('Sites')),
2020
get_model_item('dcim', 'location', _('Locations')),
2121
),
2222
),

0 commit comments

Comments
 (0)