1) Fixed linter error.

2) Fixed an issue where a password popup will appear on disconnecting from the server.
This commit is contained in:
Khushboo Vashi
2022-04-26 18:16:33 +05:30
committed by Akshay Joshi
parent 5677b1e5f8
commit 7d91cca14d
6 changed files with 13 additions and 13 deletions

View File

@@ -70,7 +70,7 @@ export function FinalSummary(props) {
if (props.cloudProvider == 'biganimal') {
summary = getBigAnimalSummary(props.cloudProvider, props.instanceData, props.databaseData);
summaryHeader[1] = 'Version Details'
summaryHeader[1] = 'Version Details';
} else {
summary = getAWSSummary(props.cloudProvider, props.instanceData, props.databaseData);
}

View File

@@ -496,13 +496,13 @@ class BigAnimalNetworkSchema extends BaseUISchema {
return true;
},
depChange: (state, source)=> {
if(source[0] == 'cloud_type') {
if (state.cloud_type == 'public') {
return {public_ip: obj.initValues.hostIP};
} else {
return {public_ip: ''};
}
}
if(source[0] == 'cloud_type') {
if (state.cloud_type == 'public') {
return {public_ip: obj.initValues.hostIP};
} else {
return {public_ip: ''};
}
}
},
helpMessage: gettext('IP Address range for permitting the inbound traffic. Ex: 127.0.0.1/32, add multiple ip addresses/ranges by comma separated. Leave it blank for 0.0.0.0/0'),
},