Skip to content

Commit

Permalink
fix(list): import missing dependency
Browse files Browse the repository at this point in the history
Signed-off-by: Marie JONES <marie.jones@corp.ovh.com>
  • Loading branch information
marie-j committed Aug 5, 2020
1 parent f285657 commit 69ab21d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/manager/modules/ng-layout-helpers/src/list/index.js
@@ -1,13 +1,16 @@
import angular from 'angular';
import '@ovh-ux/ui-kit';
import '@ovh-ux/ng-ovh-api-wrappers';

import ListLayoutCtrl from './list-layout.controller';
import component from './list-layout.component';
import utils from './list-layout.utils';

const moduleName = 'ovhManagerListLayout';

angular.module(moduleName, ['oui']).component('managerListLayout', component);
angular
.module(moduleName, ['oui', 'ngOvhApiWrappers'])
.component('managerListLayout', component);

export default {
...utils,
Expand Down

0 comments on commit 69ab21d

Please sign in to comment.