Remove obsolete console.log() statements (#6159)
Signed-off-by: Julius Volz <julius.volz@gmail.com>
This commit is contained in:
parent
bca6e90ea6
commit
63899f5529
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue