Skip to content

Commit

Permalink
adding request ticket #2143
Browse files Browse the repository at this point in the history
  • Loading branch information
ramGranell committed Sep 26, 2023
1 parent 064e7b5 commit 05381b1
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 10 deletions.
2 changes: 2 additions & 0 deletions src/data/communityCurationCohorts.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
"scope": "Biodiversity",
"orcid": "0000-0002-5788-9010",
"early_adopter" : true,
"curator_expert" : true,
"show_more" : false,
"twitter": "acaciaJoe",
"linkedin" : "joe-miller-biodiversity",
Expand Down Expand Up @@ -154,6 +155,7 @@
"scope": "Neuroscience",
"orcid": "0000-0003-3257-0545",
"early_adopter" : false,
"curator_expert" : true,
"show_more" : false,
"twitter": "neuropelletier",
"linkedin" : "gabrielpelletier",
Expand Down
33 changes: 23 additions & 10 deletions src/views/Static/CommunityCuration/CuratorCohorts.vue
Original file line number Diff line number Diff line change
Expand Up @@ -211,17 +211,30 @@
</h4>
</v-card-title>
<v-card-subtitle
v-if="card.early_adopter"
v-if="card.early_adopter || card.curator_expert"
>
<v-chip
class="ma-0"
color="pink"
label
text-color="white"
small
>
Early Adopter
</v-chip>
<v-row>
<v-chip
v-if="card.early_adopter"
class="ml-2"
color="pink"
label
text-color="white"
small
>
Early Adopter
</v-chip>
<v-chip
v-if="card.curator_expert"
class="ml-2"
color="pink"
label
text-color="white"
small
>
Curator Expert
</v-chip>
</v-row>
</v-card-subtitle>
</v-img>

Expand Down

0 comments on commit 05381b1

Please sign in to comment.