Skip to content

Commit

Permalink
Fix querylist classname regression (#2212)
Browse files Browse the repository at this point in the history
  • Loading branch information
k-simons authored and giladgray committed Mar 7, 2018
1 parent a9ba17c commit 7ef988a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/select/src/components/query-list/queryList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,9 @@ export class QueryList<T> extends React.Component<IQueryListProps<T>, IQueryList
private shouldCheckActiveItemInViewport: boolean;

public render() {
const { items, renderer, query } = this.props;
const { className, items, renderer, query } = this.props;
return renderer({
className,
handleItemSelect: this.handleItemSelect,
handleKeyDown: this.handleKeyDown,
handleKeyUp: this.handleKeyUp,
Expand Down

1 comment on commit 7ef988a

@blueprint-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fix querylist classname regression (#2212)

Preview: documentation | landing | table

Please sign in to comment.