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

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
Tim Rühsen 2022-10-06 18:44:45 +02:00 committed by GitHub
parent a873c3f974
commit ba306be80d
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,