Populate device_id/owner fields in Admin Edit Port form
The initial values are not filled with the current value. As a result, when submitting a form, these fields will be cleared. Change-Id: Ie7eb288c381681a422aa5ae4edfb8acf645f701a Closes-Bug: #1672215
This commit is contained in:
parent
4b7facc707
commit
61fece80e1
@ -110,4 +110,6 @@ class UpdateView(project_views.UpdateView):
|
||||
initial = super(UpdateView, self).get_initial()
|
||||
port = self._get_object()
|
||||
initial['binding__host_id'] = port['binding__host_id']
|
||||
initial['device_id'] = port['device_id']
|
||||
initial['device_owner'] = port['device_owner']
|
||||
return initial
|
||||
|
Loading…
Reference in New Issue
Block a user