Commit 16303659 by bergquist

tech(build): fixes broken build

parent 2de8cdb8
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment