From 7040762004cb09485238170c8220742756dbf267 Mon Sep 17 00:00:00 2001
From: xgui3783 <xgui3783@gmail.com>
Date: Thu, 3 Sep 2020 09:12:37 +0200
Subject: [PATCH] chore: display name of julich brain (#653)

---
 src/res/ext/MNI152.json                                        | 3 ++-
 src/res/ext/colin.json                                         | 3 ++-
 src/ui/nehubaContainer/splashScreen/splashScreen.template.html | 2 +-
 .../viewerStateCFull/viewerState.template.html                 | 2 +-
 4 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/src/res/ext/MNI152.json b/src/res/ext/MNI152.json
index 120c9b6b1..62aa2e721 100644
--- a/src/res/ext/MNI152.json
+++ b/src/res/ext/MNI152.json
@@ -13,6 +13,7 @@
   "parcellations": [
     {
       "name": "JuBrain Cytoarchitectonic Atlas",
+      "displayName":"Julich-Brain Cytoarchitectonic Atlas",
       "ngId": "julich brain mni152 v22 left",
       "auxillaryMeshIndices": [
         65535
@@ -23,7 +24,7 @@
       "originDatasets": [
         {
           "kgSchema": "minds/core/dataset/v1.0.0",
-          "kgId": "4ac9f0bc-560d-47e0-8916-7b24da9bb0ce"
+          "kgId": "fd303d56-e1aa-46a2-9d0c-7e5215aeb7ca"
         }
       ],
       "properties": {
diff --git a/src/res/ext/colin.json b/src/res/ext/colin.json
index 4f4cee9c9..597f04ef2 100644
--- a/src/res/ext/colin.json
+++ b/src/res/ext/colin.json
@@ -10,6 +10,7 @@
     {
       "name": "JuBrain Cytoarchitectonic Atlas",
       "ngId": "julich brain colin v22 left",
+      "displayName":"Julich-Brain Cytoarchitectonic Atlas",
       "auxillaryMeshIndices": [
         65535
       ],
@@ -19,7 +20,7 @@
       "originDatasets": [
         {
           "kgSchema": "minds/core/dataset/v1.0.0",
-          "kgId": "4ac9f0bc-560d-47e0-8916-7b24da9bb0ce"
+          "kgId": "fd303d56-e1aa-46a2-9d0c-7e5215aeb7ca"
         }
       ],
       "properties": {
diff --git a/src/ui/nehubaContainer/splashScreen/splashScreen.template.html b/src/ui/nehubaContainer/splashScreen/splashScreen.template.html
index 56c9e61fe..6c7f5d6a7 100644
--- a/src/ui/nehubaContainer/splashScreen/splashScreen.template.html
+++ b/src/ui/nehubaContainer/splashScreen/splashScreen.template.html
@@ -34,7 +34,7 @@
           *ngFor="let parcellation of template.parcellations"
           mat-button
           color="primary">
-          {{ parcellation.name }}
+          {{ parcellation.displayName || parcellation.name }}
         </button>
       </mat-card-content>
 
diff --git a/src/ui/viewerStateController/viewerStateCFull/viewerState.template.html b/src/ui/viewerStateController/viewerStateCFull/viewerState.template.html
index 3ddd84ecb..22319d9f1 100644
--- a/src/ui/viewerStateController/viewerStateCFull/viewerState.template.html
+++ b/src/ui/viewerStateController/viewerStateCFull/viewerState.template.html
@@ -86,7 +86,7 @@
           <mat-option
             *ngFor="let parcellation of (templateSelected.parcellations | appendTooltipTextPipe)"
             [value]="parcellation.name">
-            {{ parcellation.name }}
+            {{ parcellation.displayName || parcellation.name }}
           </mat-option>
         </mat-select>
       </mat-form-field>
-- 
GitLab