Skip to content

Commit 255295e

Browse files
Cyrille Bourgoisjleveugle
authored andcommitted
fix: add missing ngInject annotation
1 parent 6195b49 commit 255295e

File tree

55 files changed

+55
-55
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+55
-55
lines changed

packages/manager/modules/pci/src/projects/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ angular
99
'ui.router',
1010
'oc.lazyLoad',
1111
])
12-
.config(($stateProvider) => {
12+
.config(/* @ngInject */($stateProvider) => {
1313
$stateProvider.state('pci.projects.**', {
1414
url: '/projects',
1515
lazyLoad: ($transition$) => {

packages/manager/modules/pci/src/projects/new/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ angular
99
'ui.router',
1010
'oc.lazyLoad',
1111
])
12-
.config(($stateProvider) => {
12+
.config(/* @ngInject */($stateProvider) => {
1313
$stateProvider.state('pci.projects.new.**', {
1414
url: '/new?description&projectId',
1515
lazyLoad: ($transition$) => {

packages/manager/modules/pci/src/projects/new/payment/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ angular
99
'ui.router',
1010
'oc.lazyLoad',
1111
])
12-
.config(($stateProvider) => {
12+
.config(/* @ngInject */($stateProvider) => {
1313
$stateProvider.state('pci.projects.new.payment.**', {
1414
url: '/payment?mode&credit&voucher&hiPayStatus&paypalAgreementStatus',
1515
lazyLoad: ($transition$) => {

packages/manager/modules/pci/src/projects/project/billing/estimate/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ angular
99
'ui.router',
1010
'oc.lazyLoad',
1111
])
12-
.config(($stateProvider) => {
12+
.config(/* @ngInject */($stateProvider) => {
1313
$stateProvider.state('pci.projects.project.billing.estimate.**', {
1414
url: '/estimate',
1515
lazyLoad: ($transition$) => {

packages/manager/modules/pci/src/projects/project/billing/history/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ angular
99
'ui.router',
1010
'oc.lazyLoad',
1111
])
12-
.config(($stateProvider) => {
12+
.config(/* @ngInject */($stateProvider) => {
1313
$stateProvider.state('pci.projects.project.billing.history.**', {
1414
url: '/history',
1515
lazyLoad: ($transition$) => {

packages/manager/modules/pci/src/projects/project/billing/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ angular
99
'ui.router',
1010
'oc.lazyLoad',
1111
])
12-
.config(($stateProvider) => {
12+
.config(/* @ngInject */($stateProvider) => {
1313
$stateProvider.state('pci.projects.project.billing.**', {
1414
url: '/billing',
1515
lazyLoad: ($transition$) => {

packages/manager/modules/pci/src/projects/project/contacts/add/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ angular
99
'ui.router',
1010
'oc.lazyLoad',
1111
])
12-
.config(($stateProvider) => {
12+
.config(/* @ngInject */($stateProvider) => {
1313
$stateProvider.state('pci.projects.project.contacts.add.**', {
1414
url: '/add',
1515
lazyLoad: ($transition$) => {

packages/manager/modules/pci/src/projects/project/contacts/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ angular
99
'ui.router',
1010
'oc.lazyLoad',
1111
])
12-
.config(($stateProvider) => {
12+
.config(/* @ngInject */($stateProvider) => {
1313
$stateProvider.state('pci.projects.project.contacts.**', {
1414
url: '/contacts',
1515
lazyLoad: ($transition$) => {

packages/manager/modules/pci/src/projects/project/contacts/remove/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ angular
99
'ui.router',
1010
'oc.lazyLoad',
1111
])
12-
.config(($stateProvider) => {
12+
.config(/* @ngInject */($stateProvider) => {
1313
$stateProvider.state('pci.projects.project.contacts.remove.**', {
1414
url: '/remove?accountId',
1515
lazyLoad: ($transition$) => {

packages/manager/modules/pci/src/projects/project/creating/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ angular
99
'ui.router',
1010
'oc.lazyLoad',
1111
])
12-
.config(($stateProvider) => {
12+
.config(/* @ngInject */($stateProvider) => {
1313
$stateProvider.state('pci.projects.project.creating.**', {
1414
url: '/creating',
1515
lazyLoad: ($transition$) => {

0 commit comments

Comments
 (0)