From e08de4f9a315094646e53213a0a27ed0927363de Mon Sep 17 00:00:00 2001 From: DoHyeon Kim Date: Fri, 20 Dec 2024 14:03:08 +0900 Subject: [PATCH] FE: Fix Default Consumer's Lag Value with nullish coalescing --- frontend/src/components/ConsumerGroups/List.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/ConsumerGroups/List.tsx b/frontend/src/components/ConsumerGroups/List.tsx index 54d3ebf4b..683f8b27b 100644 --- a/frontend/src/components/ConsumerGroups/List.tsx +++ b/frontend/src/components/ConsumerGroups/List.tsx @@ -62,7 +62,7 @@ const List = () => { header: 'Consumer Lag', accessorKey: 'consumerLag', cell: (args) => { - return args.getValue() || 'N/A'; + return args.getValue() ?? 'N/A'; }, }, {