From 6c4d4f9b8791a464e44534bb2a79925fa2b3d573 Mon Sep 17 00:00:00 2001 From: "Xiao(Bill) Li" Date: Fri, 29 Jul 2022 16:39:19 -0400 Subject: [PATCH] fix(table): add missing brackets. (#183) --- packages/table/src/utils/tableHelpers.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/table/src/utils/tableHelpers.tsx b/packages/table/src/utils/tableHelpers.tsx index 3f5eefde9..88439c36b 100644 --- a/packages/table/src/utils/tableHelpers.tsx +++ b/packages/table/src/utils/tableHelpers.tsx @@ -41,13 +41,13 @@ export const getDefaultColumnDefinitions: ( if (typeof value === 'number') { return (
- {icon ?
getIcons(icon)
: null} {round(value)} + {icon ?
{getIcons(icon)}
: null} {round(value)}
); } return (
- {icon ?
getIcons(icon)
: null} {value} + {icon ?
{getIcons(icon)}
: null} {value}
); },