Compare commits

...

2 Commits

Author SHA1 Message Date
Shefali Joshi
1a2732c2a4 Merge branch 'master' into fix-notebook-snapshot 2022-01-20 11:08:49 -08:00
Joshi
e5b2856f20 Mutate the domain object after adding the new entry to it. 2022-01-20 10:07:15 -08:00

View File

@@ -125,7 +125,7 @@ export function addNotebookEntry(openmct, domainObject, notebookStorage, embed =
const newEntries = addEntryIntoPage(notebookStorage, entries, entry);
addDefaultClass(domainObject, openmct);
domainObject.configuration.entries = newEntries;
mutateObject(openmct, domainObject, 'configuration.entries', newEntries);
return id;
}