Skip to content

Commit

Permalink
style= -> className=
Browse files Browse the repository at this point in the history
  • Loading branch information
gtarpenning committed Dec 10, 2024
1 parent deed09b commit 2ec511d
Showing 1 changed file with 2 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -257,18 +257,10 @@ const AddEvaluationButton: React.FC<{
className="pb-8 pt-8 font-['Source_Sans_Pro'] text-base font-normal text-moon-800"
onClick={() => addEvaluationCall(call.callId)}>
<>
<span
style={{
overflow: 'hidden',
textOverflow: 'ellipsis',
whiteSpace: 'nowrap',
flexGrow: 1,
flexShrink: 1,
maxWidth: '250px',
}}>
<span className="max-w-[250px] flex-shrink flex-grow overflow-hidden text-ellipsis whitespace-nowrap">
{call.displayName ?? opNiceName(call.spanName)}
</span>
<span style={{flexShrink: 0}}>
<span className="flex-shrink-0">
<Id
id={call.callId}
type="Call"
Expand Down

0 comments on commit 2ec511d

Please sign in to comment.