diff --git a/docs/release-notes/version-3.1.md b/docs/release-notes/version-3.1.md index f403c9bd4..f6b1292b8 100644 --- a/docs/release-notes/version-3.1.md +++ b/docs/release-notes/version-3.1.md @@ -6,6 +6,7 @@ * [#8546](https://github.com/netbox-community/netbox/issues/8546) - Fix bulk import to restrict bridge, parent, and LAG to device interfaces * [#8674](https://github.com/netbox-community/netbox/issues/8674) - Fix rendering of tabbed content in documentation +* [#8713](https://github.com/netbox-community/netbox/issues/8713) - Restore missing "add" button on services list view * [#8717](https://github.com/netbox-community/netbox/issues/8717) - Fix redirection after bulk edit/delete of prefixes from aggregate view --- diff --git a/netbox/ipam/views.py b/netbox/ipam/views.py index c9ac44f46..aab9a6249 100644 --- a/netbox/ipam/views.py +++ b/netbox/ipam/views.py @@ -1038,7 +1038,6 @@ class ServiceListView(generic.ObjectListView): filterset = filtersets.ServiceFilterSet filterset_form = forms.ServiceFilterForm table = tables.ServiceTable - action_buttons = ('import', 'export') class ServiceView(generic.ObjectView):