From fd4ba0e89b887787f1488ddd40b22bdd23e3a3fa Mon Sep 17 00:00:00 2001 From: Arthur Flam Date: Mon, 24 Aug 2020 09:21:49 +0300 Subject: [PATCH] Fix warning --- webapp/src/Dashboard.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/webapp/src/Dashboard.js b/webapp/src/Dashboard.js index cb515bf7..64156ef6 100755 --- a/webapp/src/Dashboard.js +++ b/webapp/src/Dashboard.js @@ -63,9 +63,8 @@ class Dashboard extends React.Component { } fetchCommits() { - const { match, project, selected_batch_new, dispatch, aggregation_metrics } = this.props; + const { match, project, dispatch, aggregation_metrics } = this.props; const extra_params = { - // only_ci_batches: selected_batch_new === 'default', with_outputs: true, } dispatch(fetchCommits(project, {...match.params}, default_date_range(), aggregation_metrics, extra_params))