mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Chore: Remove implicit anys from ResultProcessor and tests * Chore: Removes implicit anys for /loki/**/*.ts * Chore: Removes implicit anys for prometheus/**/*
10 lines
277 B
TypeScript
10 lines
277 B
TypeScript
export class PrometheusConfigCtrl {
|
|
static templateUrl = 'public/app/plugins/datasource/prometheus/partials/config.html';
|
|
current: any;
|
|
|
|
/** @ngInject */
|
|
constructor($scope: any) {
|
|
this.current.jsonData.httpMethod = this.current.jsonData.httpMethod || 'GET';
|
|
}
|
|
}
|