Browse Source

tech(build): fixes broken build

bergquist 9 years ago
parent
commit
163036591d

+ 1 - 1
public/app/features/alerting/notification_edit_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;
 

+ 1 - 1
public/app/features/org/profile_ctrl.ts

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

+ 2 - 2
public/app/features/playlist/playlist_edit_ctrl.ts

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

+ 2 - 2
public/app/plugins/datasource/cloudwatch/config_ctrl.ts

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