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

Fixes #214: Suppress status message if updated_count has not been provided

This commit is contained in:
Jeremy Stretch
2016-07-06 16:25:15 -04:00
parent 891a128736
commit 3276caa284
2 changed files with 5 additions and 5 deletions

View File

@@ -1340,7 +1340,7 @@ class InterfaceBulkAddView(PermissionRequiredMixin, BulkEditView):
iface_form = forms.InterfaceForm({
'device': device.pk,
'name': name,
'mac_address': mac_address,
'mac_address': form.cleaned_data['mac_address'],
'form_factor': form.cleaned_data['form_factor'],
'mgmt_only': form.cleaned_data['mgmt_only'],
'description': form.cleaned_data['description'],