Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: fix broken img layout
  • Loading branch information
jaaydenh committed Apr 23, 2025
commit 232d7e9c2ee363df32f73c4863afefe6fa0f4607
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,11 @@ const ParameterLabel: FC<ParameterLabelProps> = ({ parameter, isPreset }) => {
return (
<div className="flex items-start gap-2">
{parameter.icon && (
<span className="w-5 h-5">
<ExternalImage
className="w-full h-full mt-0.5 object-contain"
alt="Parameter icon"
src={parameter.icon}
/>
</span>
<ExternalImage
className="w-5 h-5 mt-0.5 object-contain"
alt="Parameter icon"
src={parameter.icon}
/>
)}

<div className="flex flex-col w-full gap-1">
Expand Down
Loading