Compare commits

...

1 Commits

Author SHA1 Message Date
Jesse Mazzella
0e11f3a3dc fix: dereactify selection 2023-07-28 16:26:13 -07:00

View File

@@ -56,10 +56,8 @@ export default {
Location
},
inject: ['openmct'],
data() {
return {
selection: []
};
created() {
this.selection = [];
},
computed: {
details() {
@@ -230,7 +228,7 @@ export default {
return `detail-${component}`;
},
updateSelection(selection) {
this.selection.splice(0, this.selection.length, ...selection);
this.selection = [...selection];
}
}
};