Skip to content

Commit

Permalink
FE: Fix Default Consumer's Lag Value with nullish coalescing
Browse files Browse the repository at this point in the history
  • Loading branch information
K-Diger authored Dec 20, 2024
1 parent e7df880 commit e08de4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/ConsumerGroups/List.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const List = () => {
header: 'Consumer Lag',
accessorKey: 'consumerLag',
cell: (args) => {
return args.getValue() || 'N/A';
return args.getValue() ?? 'N/A';
},
},
{
Expand Down

0 comments on commit e08de4f

Please sign in to comment.