File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
api/src/test/java/io/kafbat/ui
frontend/src/components/ConsumerGroups/Details Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 44
55import io .kafbat .ui .model .ConsumerGroupDTO ;
66import io .kafbat .ui .model .ConsumerGroupsPageResponseDTO ;
7+ import io .kafbat .ui .producer .KafkaTestProducer ;
78import java .io .Closeable ;
89import java .time .Duration ;
910import java .util .Comparator ;
1011import java .util .List ;
1112import java .util .Properties ;
1213import java .util .UUID ;
1314import java .util .stream .Stream ;
14- import io .kafbat .ui .producer .KafkaTestProducer ;
1515import lombok .extern .slf4j .Slf4j ;
1616import lombok .val ;
1717import org .apache .commons .lang3 .RandomStringUtils ;
Original file line number Diff line number Diff line change 11import React from 'react' ;
2- import { Action , ConsumerGroupTopicPartition , ResourceType } from 'generated-sources' ;
2+ import {
3+ Action ,
4+ ConsumerGroupTopicPartition ,
5+ ResourceType ,
6+ } from 'generated-sources' ;
37import { Link } from 'react-router-dom' ;
48import { ClusterName } from 'lib/interfaces/cluster' ;
59import { ClusterGroupParam , clusterTopicPath } from 'lib/paths' ;
@@ -23,7 +27,8 @@ interface Props {
2327const ListItem : React . FC < Props > = ( { clusterName, name, consumers } ) => {
2428 const [ isOpen , setIsOpen ] = React . useState ( false ) ;
2529 const consumerProps = useAppParams < ClusterGroupParam > ( ) ;
26- const deleteOffsetMutation = useDeleteConsumerGroupOffsetsMutation ( consumerProps ) ;
30+ const deleteOffsetMutation =
31+ useDeleteConsumerGroupOffsetsMutation ( consumerProps ) ;
2732
2833 const getTotalconsumerLag = ( ) => {
2934 let count = 0 ;
You can’t perform that action at this time.
0 commit comments