De-reactify tables (#5046)

This commit is contained in:
Andrew Henry
2022-04-11 14:34:52 -07:00
committed by GitHub
parent 525496fbca
commit 2ccb90aa41

View File

@ -9,7 +9,11 @@ export default class TelemetryTableView {
this.objectPath = objectPath; this.objectPath = objectPath;
this.component = undefined; this.component = undefined;
this.table = new TelemetryTable(domainObject, openmct); Object.defineProperty(this, 'table', {
value: new TelemetryTable(domainObject, openmct),
enumerable: false,
configurable: false
});
} }
getViewContext() { getViewContext() {