mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fix an issue where sequence owner is remove on sequence edit. #5810
This commit is contained in:
@@ -77,7 +77,7 @@ function getForQueryParams(data) {
|
||||
let retData = {...data};
|
||||
Object.keys(retData).forEach((key)=>{
|
||||
let value = retData[key];
|
||||
if(_.isObject(value)) {
|
||||
if(_.isObject(value) || _.isNull(value)) {
|
||||
retData[key] = JSON.stringify(value);
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user