Skip to content

Commit

Permalink
[Profiling] Avoid line-break of samples
Browse files Browse the repository at this point in the history
  • Loading branch information
rockdaboot committed Oct 6, 2022
1 parent f026f5f commit 4ec5dc2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions x-pack/plugins/profiling/public/components/topn_functions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,9 @@ export const TopNFunctionsTable = ({
defaultMessage: 'Samples',
}),
align: 'right',
render: (_, { samples }) => {
return <EuiText style={{ whiteSpace: 'nowrap', fontSize: 'inherit' }}>{samples}</EuiText>;
},
},
{
field: TopNFunctionSortField.ExclusiveCPU,
Expand Down

0 comments on commit 4ec5dc2

Please sign in to comment.