Skip to content

Commit b955751

Browse files
committed
Fixes #14517: Ensure reservations tab is always displayed under rack view
1 parent d6c8d15 commit b955751

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/release-notes/version-3.6.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
### Bug Fixes
1111

12+
* [#14517](https://github.com/netbox-community/netbox/issues/14517) - Ensure reservations tab is always displayed under rack view
1213
* [#14549](https://github.com/netbox-community/netbox/issues/14549) - Fix association of job results when executing scripts via `runscript` management command
1314
* [#14560](https://github.com/netbox-community/netbox/issues/14560) - Do not escape exclamation marks in custom link URLs
1415
* [#14575](https://github.com/netbox-community/netbox/issues/14575) - Fix display of the tags column under VDC table

netbox/dcim/views.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -695,8 +695,7 @@ class RackRackReservationsView(generic.ObjectChildrenView):
695695
label=_('Reservations'),
696696
badge=lambda obj: obj.reservations.count(),
697697
permission='dcim.view_rackreservation',
698-
weight=510,
699-
hide_if_empty=True
698+
weight=510
700699
)
701700

702701
def get_children(self, request, parent):

0 commit comments

Comments
 (0)