more clear variable name

This commit is contained in:
Jamie Vigliotta 2020-09-14 11:33:56 -07:00
parent 35692ae4b9
commit 7d0b323dab

View File

@ -143,10 +143,10 @@ export default {
telemetryObject.key = this.openmct.objects.makeKeyString(domainObject.identifier); telemetryObject.key = this.openmct.objects.makeKeyString(domainObject.identifier);
telemetryObject.domainObject = domainObject; telemetryObject.domainObject = domainObject;
let array = this.ladTelemetryObjects[ladTable.key]; let telemetryObjects = this.ladTelemetryObjects[ladTable.key];
array.push(telemetryObject); telemetryObjects.push(telemetryObject);
this.$set(this.ladTelemetryObjects, ladTable.key, array); this.$set(this.ladTelemetryObjects, ladTable.key, telemetryObjects);
}; };
}, },
removeTelemetryObject(ladTable) { removeTelemetryObject(ladTable) {