Просмотр исходного кода

Fixes #5156: Add missing "add" button to rack reservations list

Jeremy Stretch 5 лет назад
Родитель
Сommit
12402f4c30
2 измененных файлов с 1 добавлено и 1 удалено
  1. 1 0
      docs/release-notes/version-2.9.md
  2. 0 1
      netbox/dcim/views.py

+ 1 - 0
docs/release-notes/version-2.9.md

@@ -18,6 +18,7 @@
 * [#5118](https://github.com/netbox-community/netbox/issues/5118) - Specifying an empty list of tags should clear assigned tags (REST API)
 * [#5133](https://github.com/netbox-community/netbox/issues/5133) - Fix disassociation of an IP address from a VM interface
 * [#5136](https://github.com/netbox-community/netbox/issues/5136) - Fix exception when bulk editing interface 802.1Q mode
+* [#5156](https://github.com/netbox-community/netbox/issues/5156) - Add missing "add" button to rack reservations list
 
 ---
 

+ 0 - 1
netbox/dcim/views.py

@@ -414,7 +414,6 @@ class RackReservationListView(ObjectListView):
     filterset = filters.RackReservationFilterSet
     filterset_form = forms.RackReservationFilterForm
     table = tables.RackReservationTable
-    action_buttons = ('export',)
 
 
 class RackReservationView(ObjectView):