Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Frontend
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
382
Merge Requests
64
CI / CD
Security & Compliance
Packages
Analytics
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
14445689
Commit
14445689
authored
5 hours ago
by
Mark Harding
Browse files
Options
Download
(fix): experiments service sould be injected with cookieService not storage
parent
5398250e
master
feat/2511-activity-v2
feat/2546-pro-ui
No related merge requests found
Pipeline
#115806745
waiting for manual action with stages
in 93 minutes and 2 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/app/modules/experiments/experiments.module.ts
View file @
14445689
...
...
@@ -2,7 +2,7 @@ import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import
{
CommonModule
as
NgCommonModule
}
from
'
@angular/common
'
;
import
{
CommonModule
}
from
'
../../common/common.module
'
;
import
{
Client
}
from
'
../../common/api/client.service
'
;
import
{
Storage
}
from
'
../../services/storag
e
'
;
import
{
CookieService
}
from
'
../../common/services/cookie.servic
e
'
;
import
{
ExperimentDirective
}
from
'
./experiment.directive
'
;
import
{
ExperimentsService
}
from
'
./experiments.service
'
;
...
...
@@ -14,9 +14,9 @@ import { ExperimentsService } from './experiments.service';
providers
:
[
{
provide
:
ExperimentsService
,
useFactory
:
(
_client
,
_storag
e
)
=>
new
ExperimentsService
(
_client
,
_storag
e
),
deps
:
[
Client
,
Storag
e
],
useFactory
:
(
_client
,
cookieServic
e
)
=>
new
ExperimentsService
(
_client
,
cookieServic
e
),
deps
:
[
Client
,
CookieServic
e
],
},
],
})
...
...
This diff is collapsed.
Please
register
or
sign in
to comment