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); }