Skip to content

Commit

Permalink
remove extra handler-wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
gordonwoodhull committed Apr 8, 2021
1 parent fc3a4a7 commit 74d2c58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/charts/row-chart.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export class RowChart extends CapMixin(ColorMixin(MarginMixin)) {
.classed('selected', d => (this.hasFilter()) ? this._isSelectedRow(d) : false);

if (this._keyboardAccessible) {
this._makeKeyboardAccessible(d3compat.eventHandler(d => this._onClick(d)));
this._makeKeyboardAccessible(d => this._onClick(d));
}

transition(rect, this.transitionDuration(), this.transitionDelay())
Expand Down

0 comments on commit 74d2c58

Please sign in to comment.