Skip to content

Commit

Permalink
Fix eslint error on AlertsList (#3518)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrieldutra authored and kravets-levko committed Mar 2, 2019
1 parent 02e82a7 commit ade3cc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/app/pages/alerts/AlertsList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ class AlertsList extends React.Component {
controller: ControllerType.isRequired,
};

onTableRowClick = (event, item) => navigateTo('alerts/' + item.id);

listColumns = [
Columns.custom.sortable((text, alert) => (
<div>
Expand Down Expand Up @@ -59,6 +57,8 @@ class AlertsList extends React.Component {
width: '1%' }),
];

onTableRowClick = (event, item) => navigateTo('alerts/' + item.id);

render() {
const { controller } = this.props;

Expand Down

0 comments on commit ade3cc7

Please sign in to comment.