Skip to content

Commit

Permalink
fix: publication item view - remove meta word
Browse files Browse the repository at this point in the history
  • Loading branch information
tada5hi committed Nov 29, 2024
1 parent 2a3de9c commit 67bd7e1
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions src/.vitepress/components/publication/KPublication.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ export default defineComponent({
:key="authorIndex"
>
<div>
{{ author.firstName }}.
{{ author.lastName }}
<template v-if="authorIndex < (entity.fields?.author?.length ?? 0)">
<template v-if="authorIndex > 0">
-
</template>
{{ author.firstName }}.
{{ author.lastName }}
</div>
</template>
</div>
Expand All @@ -55,13 +55,8 @@ export default defineComponent({
{{ entity.fields.abstract }}
</p>
</div>
<div class="d-flex flex-row">
<div class="me-1">
<h6>Meta</h6>
</div>
<div>
<KPublicationInfoText :entity="entity" />
</div>
<div>
<KPublicationInfoText :entity="entity" />
</div>
<!--
<div class="highlight">
Expand Down

0 comments on commit 67bd7e1

Please sign in to comment.