Fixed an issue when deploying instances on BigAnimal with the High Availability option not selected, it throws an error.
parent
fbf7b4aec3
commit
48336fd7f4
|
@ -466,6 +466,7 @@ class BigAnimalDatabaseSchema extends BaseUISchema {
|
|||
confirm_password: '',
|
||||
database_type: '',
|
||||
postgres_version: '',
|
||||
high_availability: false,
|
||||
...initValues
|
||||
});
|
||||
|
||||
|
@ -590,7 +591,7 @@ class BigAnimalHighAvailSchema extends BaseUISchema {
|
|||
constructor(fieldOptions = {}, initValues = {}) {
|
||||
super({
|
||||
oid: undefined,
|
||||
high_availability: '',
|
||||
high_availability: false,
|
||||
...initValues
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue