Fixed bug that prevented test data from working at all

This commit is contained in:
Andrew Henry 2025-05-08 17:05:37 -07:00
parent 54a920afe3
commit b2417ce5cc

View File

@ -474,7 +474,7 @@ export default class ConditionManager extends EventEmitter {
updateTestData(testData) {
if (!_.isEqual(testData, this.testData)) {
this.testData = testData;
this.testData = JSON.parse(JSON.stringify(testData));
this.openmct.objects.mutate(
this.conditionSetDomainObject,
'configuration.conditionTestData',