Skip to content

Commit

Permalink
devop: fix long nft names
Browse files Browse the repository at this point in the history
  • Loading branch information
kvhnuke committed Jan 2, 2024
1 parent 1a9f338 commit 7ba01a5
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
<template>
<div class="network-nfts__category">
<div class="network-nfts__category-head">
<!-- <img :src="collection.image" alt="" /> -->
<p>{{ collection.name }}</p>

<p>
{{
collection.name.length > 25
? $filters.replaceWithEllipsis(collection.name, 25, 4)
: collection.name
}}
</p>
<a
ref="toggle"
class="network-nfts__category-sort"
Expand Down

1 comment on commit 7ba01a5

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.