mirror of
https://github.com/grafana/grafana.git
synced 2024-11-30 20:54:22 -06:00
fix(alertlist): remove timerange checkbox option
This commit is contained in:
parent
0984edd8b2
commit
0bde2ae689
@ -22,15 +22,8 @@
|
||||
</div>
|
||||
|
||||
<div class="section gf-form-group" ng-if="ctrl.panel.show == 'changes'">
|
||||
<h5 class="section-heading">Time options</h5>
|
||||
<gf-form-switch
|
||||
class="gf-form"
|
||||
label="Within time range"
|
||||
label-class="width-11"
|
||||
tooltip="Show alert changes within the dashboard time range"
|
||||
checked="ctrl.panel.useTimeRange"
|
||||
on-change="ctrl.onRender()"></gf-form-switch>
|
||||
</div>
|
||||
<!-- <h5 class="section-heading">Current state</h5> -->
|
||||
</div>
|
||||
|
||||
<div class="section gf-form-group" ng-if="ctrl.panel.show == 'current'">
|
||||
<!-- <h5 class="section-heading">Current state</h5> -->
|
||||
|
@ -24,8 +24,7 @@ class AlertListPanel extends PanelCtrl {
|
||||
panelDefaults = {
|
||||
show: 'current',
|
||||
limit: 10,
|
||||
stateFilter: [],
|
||||
useTimeRange: false
|
||||
stateFilter: []
|
||||
};
|
||||
|
||||
/** @ngInject */
|
||||
@ -72,10 +71,8 @@ class AlertListPanel extends PanelCtrl {
|
||||
newState: this.panel.stateFilter
|
||||
};
|
||||
|
||||
if (this.panel.useTimeRange) {
|
||||
params.from = dateMath.parse(this.dashboard.time.from).unix() * 1000;
|
||||
params.to = dateMath.parse(this.dashboard.time.to).unix() * 1000;
|
||||
}
|
||||
params.from = dateMath.parse(this.dashboard.time.from).unix() * 1000;
|
||||
params.to = dateMath.parse(this.dashboard.time.to).unix() * 1000;
|
||||
|
||||
this.backendSrv.get(`/api/annotations`, params)
|
||||
.then(res => {
|
||||
|
Loading…
Reference in New Issue
Block a user