mirror of
https://github.com/nasa/openmct.git
synced 2025-06-19 15:43:48 +00:00
De-reactify tables (#5046)
This commit is contained in:
@ -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() {
|
||||||
|
Reference in New Issue
Block a user