We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e006ca4 commit a615f9eCopy full SHA for a615f9e
1 file changed
shared/api/utils/shared_ops_util.js
@@ -3170,6 +3170,7 @@ export default class SharedOpsUtil extends SharedUtil
3170
newJson.changelog.push(change);
3171
}
3172
3173
+ delete newJson.isReleased;
3174
jsonfile.writeFileSync(newJsonFile, newJson, {
3175
"encoding": "utf-8",
3176
"spaces": 4
@@ -4009,6 +4010,7 @@ export default class SharedOpsUtil extends SharedUtil
4009
4010
if (newJsonData)
4011
{
4012
newJsonData.id = uuidv4();
4013
+ delete newJsonData.isReleased;
4014
if (currentUser) newJsonData.authorName = currentUser.username;
4015
const oldId = this.getOpIdByObjName(oldName);
4016
if (oldId) newJsonData.cloneOf = oldId;
0 commit comments