mirror of https://github.com/apache/cloudstack.git
ui: allow creating account networkdomain (#7394)
Fixes #7227 Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>
This commit is contained in:
parent
1827219b4a
commit
d6b581263f
|
|
@ -1416,13 +1416,13 @@ export default {
|
|||
continue
|
||||
}
|
||||
if (input === undefined || input === null ||
|
||||
(input === '' && !['updateStoragePool', 'updateHost', 'updatePhysicalNetwork', 'updateDiskOffering', 'updateNetworkOffering', 'updateServiceOffering'].includes(action.api))) {
|
||||
(input === '' && !['updateStoragePool', 'updateHost', 'updatePhysicalNetwork', 'updateDiskOffering', 'updateNetworkOffering', 'updateServiceOffering', 'updateAccount'].includes(action.api))) {
|
||||
if (param.type === 'boolean') {
|
||||
params[key] = false
|
||||
}
|
||||
break
|
||||
}
|
||||
if (input === '' && !['tags', 'hosttags', 'storagetags'].includes(key)) {
|
||||
if (input === '' && !['tags', 'hosttags', 'storagetags', 'networkdomain'].includes(key)) {
|
||||
break
|
||||
}
|
||||
if (action.mapping && key in action.mapping && action.mapping[key].options) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue