Skip to content

Commit

Permalink
fix: trial comparison text overflow bug fix (#8869)
Browse files Browse the repository at this point in the history
* fix: trial comparison text overflow bug fix

* fix: feedback

* fix: minor fix
  • Loading branch information
keita-determined authored Feb 27, 2024
1 parent 9817a4d commit a89e51e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ export const TrialsComparisonTable: React.FC<TableProps> = ({
typeof metricValue === 'number' ? (
<HumanReadableNumber num={metricValue} />
) : (
metricValue
<Label truncate={{ tooltip: true }}>{metricValue.toString()}</Label>
)
) : null}
</td>
Expand Down

0 comments on commit a89e51e

Please sign in to comment.