Skip to content

Commit

Permalink
Format template
Browse files Browse the repository at this point in the history
  • Loading branch information
mvandenburgh authored and yarikoptic committed Dec 17, 2024
1 parent a3d620c commit 5f4e7a4
Showing 1 changed file with 39 additions and 39 deletions.
78 changes: 39 additions & 39 deletions web/src/components/DLP/OverviewTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,48 +2,48 @@
<div>
<v-row>
<v-col>
<v-card
v-if="contributors && contributors.length"
outlined
height="100%"
>
<v-card-title class="font-weight-regular">
<v-icon class="mr-3 grey--text text--lighten-1">
mdi-account-multiple
</v-icon>
Contributors
</v-card-title>
<div class="px-2 mb-2">
<v-chip
v-for="(contributor, i) in contributors"
:key="i"
style="margin: 5px;"
<v-card
v-if="contributors && contributors.length"
outlined
height="100%"
>
{{ contributor.name }}
<a
v-if="contributor.identifier && contributor.schemaKey === 'Person'"
:href="`https://orcid.org/${contributor.identifier}`"
target="_blank"
class="mx-1 d-flex align-center"
>
<img
alt="ORCID logo"
src="https://info.orcid.org/wp-content/uploads/2019/11/orcid_16x16.png"
width="16"
height="16"
<v-card-title class="font-weight-regular">
<v-icon class="mr-3 grey--text text--lighten-1">
mdi-account-multiple
</v-icon>
Contributors
</v-card-title>
<div class="px-2 mb-2">
<v-chip
v-for="(contributor, i) in contributors"
:key="i"
style="margin: 5px;"
outlined
>
</a>
<a
v-if="contactPeople.has(contributor.name)"
:href="contributor.email ? `mailto:${contributor.email}` : undefined"
class="mx-1 text-decoration-none"
>
<v-icon color="info">mdi-card-account-mail</v-icon>
</a>
</v-chip>
</div>
</v-card>
{{ contributor.name }}
<a
v-if="contributor.identifier && contributor.schemaKey === 'Person'"
:href="`https://orcid.org/${contributor.identifier}`"
target="_blank"
class="mx-1 d-flex align-center"
>
<img
alt="ORCID logo"
src="https://info.orcid.org/wp-content/uploads/2019/11/orcid_16x16.png"
width="16"
height="16"
>
</a>
<a
v-if="contactPeople.has(contributor.name)"
:href="contributor.email ? `mailto:${contributor.email}` : undefined"
class="mx-1 text-decoration-none"
>
<v-icon color="info">mdi-card-account-mail</v-icon>
</a>
</v-chip>
</div>
</v-card>
</v-col>
</v-row>
<MetadataCard
Expand Down

0 comments on commit 5f4e7a4

Please sign in to comment.