return entire selection from continuous rather than just cell name

This commit is contained in:
Colin Megill
2017-11-26 23:26:39 -08:00
parent 857c44512c
commit 3fd7fdf5c4
+1 -1
View File
@@ -140,7 +140,7 @@ class Continuous extends React.Component {
handleBrushAction (selection) {
this.props.dispatch({
type: "continuous selection using parallel coords brushing",
data: _.map(selection, (d) => { return d.CellName })
data: selection
})
}