Skip to content

Commit 9adc014

Browse files
committed
FE: Modify Consumer Lag default value when viewing Consumer List
1 parent 83b5a60 commit 9adc014

File tree

1 file changed

+1
-1
lines changed
  • kafka-ui-react-app/src/components/ConsumerGroups

1 file changed

+1
-1
lines changed

kafka-ui-react-app/src/components/ConsumerGroups/List.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const List = () => {
6262
header: 'Consumer Lag',
6363
accessorKey: 'consumerLag',
6464
cell: (args) => {
65-
return args.getValue() || 'N/A';
65+
return args.getValue() || '0';
6666
},
6767
},
6868
{

0 commit comments

Comments
 (0)