Skip to content

Commit

Permalink
fix(proxies): prevent proxyName from overflowing
Browse files Browse the repository at this point in the history
  • Loading branch information
kunish committed Oct 10, 2024
1 parent 0c004be commit 4037597
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/ProxyNodeCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ export const ProxyNodeCard = (props: {
onClick={onClick}
>
<div class="card-body">
<span class="card-title truncate text-sm">{proxyName}</span>
<span class="card-title line-clamp-1 text-start text-sm">
{proxyName}
</span>

<div class="flex items-center justify-between gap-2">
<div class="flex items-center gap-2">
Expand Down

0 comments on commit 4037597

Please sign in to comment.