Merge "Fix "Masters IP Address" for Zone update form"

This commit is contained in:
Zuul 2023-12-19 12:14:37 +00:00 committed by Gerrit Code Review
commit 1c37b05ef1
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@
var masters = item.masters.map(function (item) {
return { address: item };
});
formConfig.masters = masters;
formConfig.model.masters = masters;
}
return schemaFormModalService.open(formConfig).then(onSubmit, onCancel);
}