Fix an issue where sequence owner is remove on sequence edit. #5810

This commit is contained in:
Aditya Toshniwal
2023-02-22 14:06:44 +05:30
committed by GitHub
parent cf28d7df32
commit 9abbd30790
4 changed files with 13 additions and 6 deletions

View File

@@ -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);
}
});