Skip to content

Commit ca1b233

Browse files
committed
Add stacking capability to reporter graph
1 parent 838f4ad commit ca1b233

File tree

5 files changed

+171
-78
lines changed

5 files changed

+171
-78
lines changed

client/web/reporter/src/components/Common/ColumnPicker.vue

+1-8
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,7 @@ export default {
8383
},
8484
8585
set (selected) {
86-
// take list of field names passed to the setter
87-
// and filter out the options to recreate the list
88-
// module field objects
89-
const fields = selected.map(s => {
90-
return (this.options.find(({ value }) => value === s) || {}).field
91-
}).filter(f => f)
92-
93-
this.$emit('update:selected-items', fields)
86+
this.$emit('update:selected-items', selected)
9487
},
9588
},
9689

0 commit comments

Comments
 (0)