From 63899f552975a744a355b2c449836695b348022d Mon Sep 17 00:00:00 2001 From: Julius Volz Date: Thu, 17 Oct 2019 16:24:07 +0200 Subject: [PATCH] Remove obsolete console.log() statements (#6159) Signed-off-by: Julius Volz --- web/ui/react-app/src/PanelList.tsx | 2 -- web/ui/react-app/src/TimeInput.tsx | 1 - 2 files changed, 3 deletions(-) diff --git a/web/ui/react-app/src/PanelList.tsx b/web/ui/react-app/src/PanelList.tsx index ad152fe29..81d878d6c 100644 --- a/web/ui/react-app/src/PanelList.tsx +++ b/web/ui/react-app/src/PanelList.tsx @@ -89,12 +89,10 @@ class PanelList extends Component { } return p; }); - console.log("UPDATE OP", key, opts); this.setState({panels: newPanels}, this.updateURL) } updateURL(): void { - console.log("UPDATE"); const query = encodePanelOptionsToQueryString(this.state.panels); history.pushState({}, '', query); } diff --git a/web/ui/react-app/src/TimeInput.tsx b/web/ui/react-app/src/TimeInput.tsx index f35939e34..35c738831 100644 --- a/web/ui/react-app/src/TimeInput.tsx +++ b/web/ui/react-app/src/TimeInput.tsx @@ -92,7 +92,6 @@ class TimeInput extends Component { } componentDidUpdate() { - console.log(this.props); this.$time.datetimepicker('date', this.props.time ? moment(this.props.time) : null); }