mirror of
https://github.com/prometheus/prometheus.git
synced 2025-01-27 05:32:27 -08:00
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;
|
return p;
|
||||||
});
|
});
|
||||||
console.log("UPDATE OP", key, opts);
|
|
||||||
this.setState({panels: newPanels}, this.updateURL)
|
this.setState({panels: newPanels}, this.updateURL)
|
||||||
}
|
}
|
||||||
|
|
||||||
updateURL(): void {
|
updateURL(): void {
|
||||||
console.log("UPDATE");
|
|
||||||
const query = encodePanelOptionsToQueryString(this.state.panels);
|
const query = encodePanelOptionsToQueryString(this.state.panels);
|
||||||
history.pushState({}, '', query);
|
history.pushState({}, '', query);
|
||||||
}
|
}
|
||||||
|
|
|
@ -92,7 +92,6 @@ class TimeInput extends Component<TimeInputProps> {
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidUpdate() {
|
componentDidUpdate() {
|
||||||
console.log(this.props);
|
|
||||||
this.$time.datetimepicker('date', this.props.time ? moment(this.props.time) : null);
|
this.$time.datetimepicker('date', this.props.time ? moment(this.props.time) : null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue