mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
1) Fixed linter error.
2) Fixed an issue where a password popup will appear on disconnecting from the server.
This commit is contained in:
committed by
Akshay Joshi
parent
5677b1e5f8
commit
7d91cca14d
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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'),
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user