One off fixes

This commit is contained in:
Mo Bitar
2020-02-12 23:22:37 -06:00
parent 2daef55827
commit 7a587a275d
6 changed files with 252 additions and 287 deletions

View File

@@ -5,11 +5,13 @@ import { PureCtrl } from '@Controllers';
class PrivilegesManagementModalCtrl extends PureCtrl {
/* @ngInject */
constructor(
$scope,
$timeout,
$element,
application
application,
appState
) {
super(null, $timeout);
super($scope, $timeout, application, appState);
this.$element = $element;
this.application = application;
}