Skip to content
Snippets Groups Projects
Commit 62e086ae authored by Mitchell Hargreaves's avatar Mitchell Hargreaves
Browse files

fix the array fix

parent 4d2f382e
No related branches found
No related tags found
2 merge requests!114Revert "Add MLeRP Monash",!113Revert "Add MLeRP Monash"
Pipeline #94802 passed
......@@ -178,8 +178,8 @@
"options": {
"browserTarget": "sv2:build",
"ssl": true,
"sslKey": "/home/chines/code/sv2/app.key",
"sslCert": "/home/chines/code/sv2/app.crt"
"sslKey": "./app.key",
"sslCert": "./app.crt"
},
"configurations": {
"production": {
......@@ -188,6 +188,9 @@
"prod": {
"browserTarget": "sv2:build:production"
},
"mlerp": {
"browserTarget": "sv2:build:mlerp"
},
"gerp": {
"browserTarget": "sv2:build:gerp"
}
......@@ -241,5 +244,8 @@
"@schematics/angular:directive": {
"prefix": "app"
}
},
"cli": {
"analytics": "ca34d012-54a2-4c03-b049-2758338de422"
}
}
......@@ -25,7 +25,7 @@ export class ComputesitesService {
this.computesites = new BehaviorSubject<Computesite[]>([]);
this.getComputeSites();
this.identities$ = combineLatest([this.authorisationService.agentContents$,this.computesites.pipe(filter((v) => v.length === 0))])
this.identities$ = combineLatest([this.authorisationService.agentContents$,this.computesites.pipe(filter((v) => v.length !== 0))])
.pipe(
switchMap((v) => this.combine_cert_site(v[0],v[1]))
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment