Skip to content

Commit

Permalink
fix: add spacing between breakdown and compare value labels (#24540)
Browse files Browse the repository at this point in the history
  • Loading branch information
Itsindigo authored Aug 23, 2024
1 parent bb35804 commit cc8a193
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,11 @@ export function invertDataSource(
if (pillValues.length > 0) {
datumTitle = (
<>
{pillValues.map((pill) => (
<span key={pill}>{midEllipsis(pill, 60)}</span>
{pillValues.map((pill, index) => (
<>
<span key={pill}>{midEllipsis(pill, 60)}</span>
{index < pillValues.length - 1 && ' '}
</>
))}
</>
)
Expand Down

0 comments on commit cc8a193

Please sign in to comment.