Skip to content

Commit

Permalink
Increase width of service inventory sparkplot columns
Browse files Browse the repository at this point in the history
From 160 to 176px. Prevents overlapping of the labels.

Fixes elastic#109103.
  • Loading branch information
smith committed Aug 18, 2021
1 parent ed78d4b commit cd080ca
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export function getServiceColumns({
/>
),
align: 'left',
width: showWhenSmallOrGreaterThanLarge ? `${unit * 10}px` : 'auto',
width: showWhenSmallOrGreaterThanLarge ? `${unit * 11}px` : 'auto',
},
{
field: 'throughput',
Expand All @@ -184,7 +184,7 @@ export function getServiceColumns({
/>
),
align: 'left',
width: showWhenSmallOrGreaterThanLarge ? `${unit * 10}px` : 'auto',
width: showWhenSmallOrGreaterThanLarge ? `${unit * 11}px` : 'auto',
},
{
field: 'transactionErrorRate',
Expand Down

0 comments on commit cd080ca

Please sign in to comment.