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

Merge pull request #1367 from FZJ-INM1-BDA/feat_jba3ColinSurface

feat: jba3 colin surface view
parents ce2b6064 92e59e0e
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,12 @@ export const environment = {
VERSION: 'unknown version',
PRODUCTION: false,
BACKEND_URL: null,
SIIBRA_API_ENDPOINTS: 'https://siibra-api-latest.apps-dev.hbp.eu/v3_0', //'https://siibra-api-stable.apps.hbp.eu/v2_0,https://siibra-api-stable.apps.jsc.hbp.eu/v2_0,https://siibra-api-stable-ns.apps.hbp.eu/v2_0',
// N.B. do not update the SIIBRA_API_ENDPOITNS directly
// some libraries rely on the exact string formatting to work properly
SIIBRA_API_ENDPOINTS:
// 'http://localhost:10081/v3_0', // endpoint-local-10081
'https://siibra-api-latest.apps-dev.hbp.eu/v3_0', //endpoint-latest
// 'https://siibra-api-stable.apps.hbp.eu/v3_0', // endpoint-stable
SPATIAL_TRANSFORM_BACKEND: 'https://hbp-spatial-backend.apps.hbp.eu',
MATOMO_URL: null,
MATOMO_ID: null,
......
......@@ -139,7 +139,7 @@ export class NehubaMeshService implements OnDestroy {
* TODO monkey patching jba29 in colin to show all meshes
*
*/
if (selectedParcellation.id === IDS.PARCELLATION.JBA29 && selectedTemplate.id === IDS.TEMPLATES.COLIN27) {
if ((selectedParcellation.id === IDS.PARCELLATION.JBA29 || IDS.PARCELLATION.JBA30 === selectedParcellation.id) && selectedTemplate.id === IDS.TEMPLATES.COLIN27) {
return of(...allSegMesh)
}
const hasSegSelected = selectedSegMesh.some(v => v.labelIndicies.length !== 0)
......
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