Skip to content

Commit

Permalink
fix(#6854): [LADTableSet] prevent compositions from becoming reactive (
Browse files Browse the repository at this point in the history
…#6855)

* fix: prevent compositions from becoming reactive
  • Loading branch information
ozyx committed Jul 28, 2023
1 parent 3c2b032 commit 194eb43
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/plugins/LADTable/components/LadTableSet.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ export default {
return {
ladTableObjects: [],
ladTelemetryObjects: {},
compositions: [],
viewContext: {},
staleObjects: [],
configuration: this.ladTableConfiguration.getConfiguration()
Expand Down Expand Up @@ -115,6 +114,9 @@ export default {
return '';
}
},
created() {
this.compositions = [];
},
mounted() {
this.ladTableConfiguration.on('change', this.handleConfigurationChange);
this.composition = this.openmct.composition.get(this.domainObject);
Expand Down

0 comments on commit 194eb43

Please sign in to comment.