1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #5551: Restore missing import button on services list

This commit is contained in:
Jeremy Stretch
2020-12-31 10:38:47 -05:00
parent 39e6872288
commit e73c225965
2 changed files with 2 additions and 1 deletions

View File

@@ -804,7 +804,7 @@ class ServiceListView(generic.ObjectListView):
filterset = filters.ServiceFilterSet
filterset_form = forms.ServiceFilterForm
table = tables.ServiceTable
action_buttons = ('export',)
action_buttons = ('import', 'export')
class ServiceView(generic.ObjectView):