tech(build): fixes broken build

pull/7406/head
bergquist 8 years ago
parent 2de8cdb85c
commit 163036591d
  1. 2
      public/app/features/alerting/notification_edit_ctrl.ts
  2. 2
      public/app/features/org/profile_ctrl.ts
  3. 4
      public/app/features/playlist/playlist_edit_ctrl.ts
  4. 4
      public/app/plugins/datasource/cloudwatch/config_ctrl.ts

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

Loading…
Cancel
Save