Skip to content

Commit

Permalink
[Profiling] Avoid line-break of samples (#142322) (#142890)
Browse files Browse the repository at this point in the history
Co-authored-by: Kibana Machine <[email protected]>
(cherry picked from commit ba306be)

Co-authored-by: Tim Rühsen <[email protected]>
  • Loading branch information
kibanamachine and rockdaboot authored Oct 6, 2022
1 parent 4476ccd commit ae93ba0
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 ae93ba0

Please sign in to comment.