tech(build): fixes broken build

This commit is contained in:
bergquist
2017-01-30 15:04:55 +01:00
parent 2de8cdb85c
commit 163036591d
4 changed files with 6 additions and 6 deletions

View File

@@ -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;

View File

@@ -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) {

View File

@@ -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',
};

View File

@@ -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) {