Skip to content

Commit

Permalink
Merge pull request #1499 from dandi/fix/contributor
Browse files Browse the repository at this point in the history
fix: allow for listing organizations as contributors
  • Loading branch information
satra authored Feb 22, 2023
2 parents c826571 + f691345 commit 88f11cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/components/DLP/OverviewTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
>
{{ contributor.name }}
<a
v-if="contributor.identifier"
v-if="contributor.identifier && contributor.schemaKey === 'Person'"
:href="`https://orcid.org/${contributor.identifier}`"
target="_blank"
class="mx-1 d-flex align-center"
Expand Down Expand Up @@ -270,7 +270,7 @@ const currentDandiset = computed(() => store.dandiset);
const contributors = computed(
() => props.meta.contributor?.filter(
(contributor) => !!(contributor.includeInCitation) && !!(contributor.schemaKey === 'Person'),
(contributor) => !!(contributor.includeInCitation),
),
);
const fundingInformation = computed(
Expand Down

0 comments on commit 88f11cf

Please sign in to comment.