mirror of
https://github.com/nasa/openmct.git
synced 2025-06-17 06:38:17 +00:00
remove modified and persisted keys from duplicates (#3241)
This commit is contained in:
@ -612,6 +612,13 @@ export default {
|
||||
object.composition.push(...composition);
|
||||
}
|
||||
|
||||
if (object.modified || object.persisted) {
|
||||
object.modified = undefined;
|
||||
object.persisted = undefined;
|
||||
delete object.modified;
|
||||
delete object.persisted;
|
||||
}
|
||||
|
||||
object.name = objectName;
|
||||
object.identifier = identifier;
|
||||
object.location = parentKeyString;
|
||||
|
Reference in New Issue
Block a user