Merge pull request #17791 from silentoplayz/truncate-models-tag

Fix: truncate long model tags with a 32 characters limit
This commit is contained in:
Tim Jaeryang Baek 2025-09-26 12:46:45 -05:00 committed by GitHub
commit a97cdc0da0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -305,16 +305,18 @@
</button> </button>
{#each tags as tag} {#each tags as tag}
<button <Tooltip content={tag}>
class="min-w-fit outline-none p-1.5 {selectedTag === tag <button
? '' class="min-w-fit outline-none p-1.5 {selectedTag === tag
: 'text-gray-300 dark:text-gray-600 hover:text-gray-700 dark:hover:text-white'} transition capitalize" ? ''
on:click={() => { : 'text-gray-300 dark:text-gray-600 hover:text-gray-700 dark:hover:text-white'} transition capitalize"
selectedTag = tag; on:click={() => {
}} selectedTag = tag;
> }}
{tag} >
</button> {tag.length > 32 ? `${tag.slice(0, 32)}...` : tag}
</button>
</Tooltip>
{/each} {/each}
</div> </div>
</div> </div>