Browse Source

added @ngInject

Patrick O'Carroll 7 years ago
parent
commit
5f67d4268d
1 changed files with 2 additions and 0 deletions
  1. 2 0
      public/app/core/directives/value_select_dropdown.ts

+ 2 - 0
public/app/core/directives/value_select_dropdown.ts

@@ -17,6 +17,7 @@ export class ValueSelectDropdownCtrl {
   hide: any;
   onUpdated: any;
 
+  /** @ngInject */
   constructor(private $q) {}
 
   show() {
@@ -236,6 +237,7 @@ export class ValueSelectDropdownCtrl {
   }
 }
 
+/** @ngInject */
 export function valueSelectDropdown($compile, $window, $timeout, $rootScope) {
   return {
     scope: { variable: '=', onUpdated: '&' },