Skip to content

Commit c5cf170

Browse files
authored
fix(releases): Fix unwanted whitespace on y-axis w/ bubbles (#92124)
This fixes an unwanted whitespace due to the release bubbles y-axis. old: ![image](https://github.com/user-attachments/assets/c22a1cd9-92f4-4b44-b966-e743ef1d3cc7) new: ![image](https://github.com/user-attachments/assets/2c864f8e-dd89-43a0-9ebd-430a4a4647b0)
1 parent bc8e276 commit c5cf170

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

static/app/views/releases/releaseBubbles/useReleaseBubbles.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -357,6 +357,11 @@ export function useReleaseBubbles({
357357
min: 0,
358358
max: 100,
359359
show: false,
360+
// `axisLabel` causes an unwanted whitespace/width on the y-axis
361+
axisLabel: {show: false},
362+
// Hides an axis line + tooltip when hovering on chart
363+
// This is default `false`, but the main y-axis has
364+
// `tooltip.trigger=axis` which will cause this to be enabled.
360365
axisPointer: {show: false},
361366
}),
362367
[]

0 commit comments

Comments
 (0)