From 4ec5dc282193a1bec73933b15d6cdb2f34ed4c75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20R=C3=BChsen?= Date: Fri, 30 Sep 2022 12:45:17 +0200 Subject: [PATCH] [Profiling] Avoid line-break of samples --- 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,