|
@@ -15,7 +15,7 @@ import Table, { LinkCell, TagCell } from 'components/common/NewTable';
|
|
import { useNavigate, useSearchParams } from 'react-router-dom';
|
|
import { useNavigate, useSearchParams } from 'react-router-dom';
|
|
import { CONSUMER_GROUP_STATE_TOOLTIPS, PER_PAGE } from 'lib/constants';
|
|
import { CONSUMER_GROUP_STATE_TOOLTIPS, PER_PAGE } from 'lib/constants';
|
|
import { useConsumerGroups } from 'lib/hooks/api/consumers';
|
|
import { useConsumerGroups } from 'lib/hooks/api/consumers';
|
|
-import Tooltip from '../common/Tooltip/Tooltip';
|
|
|
|
|
|
+import Tooltip from 'components/common/Tooltip/Tooltip';
|
|
|
|
|
|
const List = () => {
|
|
const List = () => {
|
|
const { clusterName } = useAppParams<ClusterNameRoute>();
|
|
const { clusterName } = useAppParams<ClusterNameRoute>();
|
|
@@ -71,6 +71,7 @@ const List = () => {
|
|
id: ConsumerGroupOrdering.STATE,
|
|
id: ConsumerGroupOrdering.STATE,
|
|
header: 'State',
|
|
header: 'State',
|
|
accessorKey: 'state',
|
|
accessorKey: 'state',
|
|
|
|
+ // eslint-disable-next-line react/no-unstable-nested-components
|
|
cell: (args) => {
|
|
cell: (args) => {
|
|
const value = args.getValue() as ConsumerGroupState;
|
|
const value = args.getValue() as ConsumerGroupState;
|
|
return (
|
|
return (
|