Skip to content

Commit

Permalink
fix: model dropdown icon miss align (#4645)
Browse files Browse the repository at this point in the history
  • Loading branch information
urmauur authored Feb 13, 2025
1 parent c538c60 commit d2336cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/containers/ModelDropdown/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ const ModelDropdown = ({
>
<div className="flex items-center gap-2">
<p
className="line-clamp-1 text-[hsla(var(--text-secondary))]"
className="max-w-[200px] overflow-hidden truncate whitespace-nowrap text-[hsla(var(--text-secondary))]"
title={model.name}
>
{model.name}
Expand Down Expand Up @@ -573,7 +573,7 @@ const ModelDropdown = ({
<div className="flex gap-x-2">
<p
className={twMerge(
'line-clamp-1',
'max-w-[200px] overflow-hidden truncate whitespace-nowrap',
!isDownloaded &&
'text-[hsla(var(--text-secondary))]'
)}
Expand Down

0 comments on commit d2336cf

Please sign in to comment.