Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 5003 nft card without name #5013

Merged
merged 10 commits into from
Feb 20, 2023
2 changes: 1 addition & 1 deletion components/carousel/module/CarouselInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
'has-text-weight-bold carousel-info-name',
{ 'carousel-info-collection': isCollection },
]">
<span class="is-ellipsis">{{ item.name }}</span>
<span class="is-ellipsis">{{ item.name || item.id }}</span>
<span v-if="isCollection" class="carousel-info-arrow">----></span>
</nuxt-link>
<CollectionDetailsPopover v-if="item?.collectionId" :nft="item">
Expand Down