Skip to content

Commit 42461db

Browse files
committed
fix(telecom-dashboard): use litteral string for imports
1 parent 4ef3d57 commit 42461db

File tree

1 file changed

+5
-5
lines changed
  • packages/manager/modules/telecom-dashboard/src

1 file changed

+5
-5
lines changed

packages/manager/modules/telecom-dashboard/src/index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import '@uirouter/angularjs';
33
import 'ng-at-internet';
44
import 'at-internet-ui-router-plugin';
55
import '@ovh-ux/ng-uirouter-title';
6-
import ovhManagerCore from '@ovh-ux/manager-core';
7-
import telecomUniverseComponents from '@ovh-ux/telecom-universe-components';
6+
import '@ovh-ux/manager-core';
7+
import '@ovh-ux/telecom-universe-components';
88
import '@ovh-ux/manager-telecom-styles';
99

1010
import 'ovh-ui-kit/dist/oui.css';
@@ -26,11 +26,11 @@ const moduleName = 'ovhManagerTelecomDashboard';
2626

2727
angular
2828
.module(moduleName, [
29-
ovhManagerCore,
30-
'ng-at-internet',
3129
'atInternetUiRouterPlugin',
30+
'ng-at-internet',
3231
'ngUirouterTitle',
33-
telecomUniverseComponents,
32+
'ovhManagerCore',
33+
'telecomUniverseComponents',
3434
'ui.router',
3535
])
3636
.config(/* @ngInject */ ($stateProvider) => {

0 commit comments

Comments
 (0)