Skip to content

Commit

Permalink
[Profiling] Avoid line-break of samples (#142322)
Browse files Browse the repository at this point in the history
Co-authored-by: Kibana Machine <[email protected]>
  • Loading branch information
rockdaboot and kibanamachine authored Oct 6, 2022
1 parent a873c3f commit ba306be
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 ba306be

Please sign in to comment.