Skip to content
Snippets Groups Projects
Unverified Commit 1bf536eb authored by xgui3783's avatar xgui3783 Committed by GitHub
Browse files

Merge branch 'master' into staging

parents ed5136cb e7a3c215
No related branches found
No related tags found
No related merge requests found
...@@ -47,6 +47,8 @@ const connectSrc = [ ...@@ -47,6 +47,8 @@ const connectSrc = [
'siibra-api-latest.apps-dev.hbp.eu', 'siibra-api-latest.apps-dev.hbp.eu',
'siibra-api-rc.apps.hbp.eu', 'siibra-api-rc.apps.hbp.eu',
'siibra-api-stable.apps.hbp.eu', 'siibra-api-stable.apps.hbp.eu',
'siibra-api-ns.apps.hbp.eu',
'siibra-api-stable.apps.jsc.hbp.eu',
// chunk servers // chunk servers
'neuroglancer.humanbrainproject.org', 'neuroglancer.humanbrainproject.org',
......
...@@ -7,3 +7,7 @@ ...@@ -7,3 +7,7 @@
## Bugfix ## Bugfix
- Fix connectivity bug on cohort filter - Fix connectivity bug on cohort filter
## Behind the scenes
- Fixed some CSP issues
- Removed VK/DK atlases
...@@ -17,6 +17,11 @@ function isATPGuard(obj: any): obj is ATP { ...@@ -17,6 +17,11 @@ function isATPGuard(obj: any): obj is ATP {
return obj.atlas || obj.template || obj.parcellation return obj.atlas || obj.template || obj.parcellation
} }
const banListParcName = new Set([
"VEP Atlas",
"Desikan-Killiany 2006"
])
@Component({ @Component({
selector: 'sxplr-wrapper-atp-selector', selector: 'sxplr-wrapper-atp-selector',
templateUrl: './wrapper.template.html', templateUrl: './wrapper.template.html',
...@@ -55,6 +60,7 @@ export class WrapperATPSelector implements OnDestroy{ ...@@ -55,6 +60,7 @@ export class WrapperATPSelector implements OnDestroy{
) )
parcs$ = this.store$.pipe( parcs$ = this.store$.pipe(
fromRootStore.allAvailParcs(this.sapi), fromRootStore.allAvailParcs(this.sapi),
map(parcs => parcs.filter(p => !banListParcName.has(p.name)))
) )
isBusy$ = new Subject<boolean>() isBusy$ = new Subject<boolean>()
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment