[Profiling] Avoid line-break of samples (#142322) (#142890)

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
(cherry picked from commit ba306be80d)

Co-authored-by: Tim Rühsen <tim.ruhsen@elastic.co>
This commit is contained in:
Kibana Machine 2022-10-06 12:10:54 -06:00 committed by GitHub
parent 4476ccd896
commit ae93ba01f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,