Skip to content

Commit

Permalink
refactor: lint:fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ozyx committed Jul 28, 2023
1 parent 349b909 commit 6f48efa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/plugins/LADTable/components/LadTableSet.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,6 @@ export default {
required: true
}
},
created() {
this.compositions = [];
},
data() {
return {
ladTableObjects: [],
Expand Down Expand Up @@ -117,6 +114,9 @@ export default {
return '';
}
},
created() {

Check warning on line 117 in src/plugins/LADTable/components/LadTableSet.vue

View check run for this annotation

Codecov / codecov/patch

src/plugins/LADTable/components/LadTableSet.vue#L117

Added line #L117 was not covered by tests
this.compositions = [];
},

Check warning on line 119 in src/plugins/LADTable/components/LadTableSet.vue

View check run for this annotation

Codecov / codecov/patch

src/plugins/LADTable/components/LadTableSet.vue#L119

Added line #L119 was not covered by tests
mounted() {
this.ladTableConfiguration.on('change', this.handleConfigurationChange);
this.composition = this.openmct.composition.get(this.domainObject);
Expand Down

0 comments on commit 6f48efa

Please sign in to comment.