Skip to content

Commit

Permalink
fix(bi): Break word on the y series selects when the column name is t…
Browse files Browse the repository at this point in the history
…oo long (#25080)
  • Loading branch information
Gilbert09 authored Sep 19, 2024
1 parent a4d0a67 commit b11ddb4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const YSeries = ({ series, index }: { series: AxisSeries<number>; index: number
return (
<div className="flex gap-1 mb-1">
<LemonSelect
className="grow flex-1"
className="grow flex-1 break-all"
value={series !== null ? series.column.name : 'None'}
options={options}
disabledReason={responseLoading ? 'Query loading...' : undefined}
Expand Down

0 comments on commit b11ddb4

Please sign in to comment.