Skip to content

Commit e73c225

Browse files
committed
Fixes #5551: Restore missing import button on services list
1 parent 39e6872 commit e73c225

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docs/release-notes/version-2.10.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
* [#5543](https://github.com/netbox-community/netbox/issues/5543) - Fix rendering of config contexts with cluster assignment for devices
1313
* [#5546](https://github.com/netbox-community/netbox/issues/5546) - Add custom field bulk edit support for cables, power panels, rack reservations, and virtual chassis
1414
* [#5547](https://github.com/netbox-community/netbox/issues/5547) - Add custom field bulk import support for cables, power panels, rack reservations, and virtual chassis
15+
* [#5551](https://github.com/netbox-community/netbox/issues/5551) - Restore missing import button on services list
1516
* [#5557](https://github.com/netbox-community/netbox/issues/5557) - Fix VRF route target assignment via REST API
1617
* [#5558](https://github.com/netbox-community/netbox/issues/5558) - Fix regex validation support for custom URL fields
1718

netbox/ipam/views.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,7 @@ class ServiceListView(generic.ObjectListView):
804804
filterset = filters.ServiceFilterSet
805805
filterset_form = forms.ServiceFilterForm
806806
table = tables.ServiceTable
807-
action_buttons = ('export',)
807+
action_buttons = ('import', 'export')
808808

809809

810810
class ServiceView(generic.ObjectView):

0 commit comments

Comments
 (0)