Remove obsolete console.log() statements (#6159)

Signed-off-by: Julius Volz <julius.volz@gmail.com>
This commit is contained in:
Julius Volz 2019-10-17 16:24:07 +02:00 committed by GitHub
parent bca6e90ea6
commit 63899f5529
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 3 deletions

View File

@ -89,12 +89,10 @@ class PanelList extends Component<any, PanelListState> {
}
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);
}

View File

@ -92,7 +92,6 @@ class TimeInput extends Component<TimeInputProps> {
}
componentDidUpdate() {
console.log(this.props);
this.$time.datetimepicker('date', this.props.time ? moment(this.props.time) : null);
}