Skip to content

Commit

Permalink
Fix: History item click action (#576)
Browse files Browse the repository at this point in the history
Fix: History item click action
  • Loading branch information
thewahome committed Jun 8, 2020
2 parents 26ddbb1 + 9504987 commit ea67860
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/views/sidebar/history/History.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,8 @@ export class History extends Component<IHistoryProps, any> {
const classes = classNames(this.props);
return (
<div className={classes.groupHeader}>
<DetailsRow {...props} className={classes.queryRow} />
<DetailsRow {...props} className={classes.queryRow}
onClick={() => this.onViewQuery(props.item)} />
</div>
);
};
Expand Down

0 comments on commit ea67860

Please sign in to comment.