mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
tech(build): fixes broken build
This commit is contained in:
@@ -7,7 +7,7 @@ import {appEvents, coreModule} from 'app/core/core';
|
||||
|
||||
export class AlertNotificationEditCtrl {
|
||||
theForm: any;
|
||||
testSeverity: string = "critical";
|
||||
testSeverity = "critical";
|
||||
notifiers: any;
|
||||
notifierTemplateId: string;
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ export class ProfileCtrl {
|
||||
old_theme: any;
|
||||
orgs: any = [];
|
||||
userForm: any;
|
||||
showOrgsList: boolean = false;
|
||||
showOrgsList = false;
|
||||
|
||||
/** @ngInject **/
|
||||
constructor(private backendSrv, private contextSrv, private $location) {
|
||||
|
||||
@@ -8,8 +8,8 @@ import config from 'app/core/config';
|
||||
export class PlaylistEditCtrl {
|
||||
filteredDashboards: any = [];
|
||||
filteredTags: any = [];
|
||||
searchQuery: string = '';
|
||||
loading: boolean = false;
|
||||
searchQuery = '';
|
||||
loading = false;
|
||||
playlist: any = {
|
||||
interval: '5m',
|
||||
};
|
||||
|
||||
@@ -7,8 +7,8 @@ export class CloudWatchConfigCtrl {
|
||||
static templateUrl = 'partials/config.html';
|
||||
current: any;
|
||||
|
||||
accessKeyExist: boolean = false;
|
||||
secretKeyExist: boolean = false;
|
||||
accessKeyExist = false;
|
||||
secretKeyExist = false;
|
||||
|
||||
/** @ngInject */
|
||||
constructor($scope) {
|
||||
|
||||
Reference in New Issue
Block a user