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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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