Skip to content
Snippets Groups Projects
Unverified Commit 7f331f9e authored by Xiao Gui's avatar Xiao Gui
Browse files

[skip ci] hotfix: remove VK/DK

parent ea8f3b32
No related branches found
No related tags found
No related merge requests found
......@@ -47,6 +47,8 @@ const connectSrc = [
'siibra-api-latest.apps-dev.hbp.eu',
'siibra-api-rc.apps.hbp.eu',
'siibra-api-stable.apps.hbp.eu',
'siibra-api-ns.apps.hbp.eu',
'siibra-api-stable.apps.jsc.hbp.eu',
// chunk servers
'neuroglancer.humanbrainproject.org',
......
# v2.9.1
## Behind the scenes
- Fixed some CSP issues
- Removed VK/DK atlases
......@@ -33,6 +33,7 @@ nav:
- Fetching datasets: 'advanced/datasets.md'
- Display non-atlas volumes: 'advanced/otherVolumes.md'
- Release notes:
- v2.9.1: 'releases/v2.9.1.md'
- v2.9.0: 'releases/v2.9.0.md'
- v2.8.0: 'releases/v2.8.0.md'
- v2.7.7: 'releases/v2.7.7.md'
......
{
"name": "interactive-viewer",
"version": "2.9.0",
"version": "2.9.1",
"description": "siibra-explorer - explore brain atlases. Based on humanbrainproject/nehuba & google/neuroglancer. Built with angular",
"scripts": {
"lint": "eslint src --ext .ts",
......
......@@ -17,6 +17,11 @@ function isATPGuard(obj: any): obj is ATP {
return obj.atlas || obj.template || obj.parcellation
}
const banListParcName = new Set([
"VEP Atlas",
"Desikan-Killiany 2006"
])
@Component({
selector: 'sxplr-wrapper-atp-selector',
templateUrl: './wrapper.template.html',
......@@ -55,6 +60,7 @@ export class WrapperATPSelector implements OnDestroy{
)
parcs$ = this.store$.pipe(
fromRootStore.allAvailParcs(this.sapi),
map(parcs => parcs.filter(p => !banListParcName.has(p.name)))
)
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