mirror of
https://github.com/nasa/openmct.git
synced 2025-01-18 02:39:56 +00:00
* fix: prevent compositions from becoming reactive
This commit is contained in:
parent
3c2b032526
commit
194eb43607
@ -74,7 +74,6 @@ export default {
|
|||||||
return {
|
return {
|
||||||
ladTableObjects: [],
|
ladTableObjects: [],
|
||||||
ladTelemetryObjects: {},
|
ladTelemetryObjects: {},
|
||||||
compositions: [],
|
|
||||||
viewContext: {},
|
viewContext: {},
|
||||||
staleObjects: [],
|
staleObjects: [],
|
||||||
configuration: this.ladTableConfiguration.getConfiguration()
|
configuration: this.ladTableConfiguration.getConfiguration()
|
||||||
@ -115,6 +114,9 @@ export default {
|
|||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
created() {
|
||||||
|
this.compositions = [];
|
||||||
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.ladTableConfiguration.on('change', this.handleConfigurationChange);
|
this.ladTableConfiguration.on('change', this.handleConfigurationChange);
|
||||||
this.composition = this.openmct.composition.get(this.domainObject);
|
this.composition = this.openmct.composition.get(this.domainObject);
|
||||||
|
Loading…
Reference in New Issue
Block a user