Fixed some cloud deployment issues:

- Added High Availability option
 - Server group renamed to pgAdmin server group
 - Removed the Private option from Networking otherwise, it would not be possible to connect the server from pgAdmin.
This commit is contained in:
Khushboo Vashi
2022-06-09 14:07:05 +05:30
committed by Akshay Joshi
parent 3bc373fff0
commit e1c5a06bf0
7 changed files with 78 additions and 72 deletions

View File

@@ -485,6 +485,11 @@ function SchemaDialogView({
setDirty(isDataChanged);
/* tell the callbacks the data has changed */
if(viewHelperProps.mode !== 'edit') {
/* If new then merge the changed data with origData */
changedData = _.assign({}, schema.origData, changedData);
}
props.onDataChange && props.onDataChange(isDataChanged, changedData);
}, [sessData, formReady]);