Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Commit

Permalink
frontend: publisher detail: Don't display img if no logo
Browse files Browse the repository at this point in the history
  • Loading branch information
codemacabre committed Jun 22, 2023
1 parent af920ff commit 7576aeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion registry-vue/src/components/publishers/PublisherDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<div class="dashboard-publisher-result__date" style="margin-top: -24px;">
Last update: <time :datetime="publisher.last_published">{{ publisher.last_published }}</time>
</div>
<div class="registry-card__pub-logo" style="margin-top: 40px;">
<div v-if="publisher.logo" class="registry-card__pub-logo" style="margin-top: 40px;">
<a :href="publisher.website" target="_blank">
<img :src="publisher.logo" :alt="publisher.name" :title="publisher.name">
</a>
Expand Down

0 comments on commit 7576aeb

Please sign in to comment.