mirror of https://github.com/apache/cloudstack.git
ui: fix systevmtype for create service offering form (#4683)
Fixes #4682 Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>
This commit is contained in:
parent
186ac69c49
commit
06c16ac8f4
|
|
@ -1052,6 +1052,9 @@ export default {
|
|||
if ('isvolatile' in values && values.isvolatile !== undefined) {
|
||||
params.isvolatile = values.isvolatile === true
|
||||
}
|
||||
if ('systemvmtype' in values && values.systemvmtype !== undefined) {
|
||||
params.systemvmtype = values.systemvmtype
|
||||
}
|
||||
if (values.ispublic !== true) {
|
||||
var domainIndexes = values.domainid
|
||||
var domainId = null
|
||||
|
|
|
|||
Loading…
Reference in New Issue