From 03b8a2abcb08db7512fab70848c88b0a34248eff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20R=C3=BChsen?= Date: Thu, 6 Oct 2022 18:44:45 +0200 Subject: [PATCH] [Profiling] Avoid line-break of samples (#142322) Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> (cherry picked from commit ba306be80d3e962689ad3ef77340846f91d4c3f5) --- x-pack/plugins/profiling/public/components/topn_functions.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/x-pack/plugins/profiling/public/components/topn_functions.tsx b/x-pack/plugins/profiling/public/components/topn_functions.tsx index 4d8522913a245..8421b99b5dc7d 100644 --- a/x-pack/plugins/profiling/public/components/topn_functions.tsx +++ b/x-pack/plugins/profiling/public/components/topn_functions.tsx @@ -144,6 +144,9 @@ export const TopNFunctionsTable = ({ defaultMessage: 'Samples', }), align: 'right', + render: (_, { samples }) => { + return {samples}; + }, }, { field: TopNFunctionSortField.ExclusiveCPU,