Skip to content

Commit 308e6f3

Browse files
committed
Fixes #3614
1 parent 6a40146 commit 308e6f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kafka-ui-react-app/src/components/Brokers/BrokersList/BrokersList.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,13 @@ const BrokersList: React.FC = () => {
7373
header: 'Broker ID',
7474
accessorKey: 'brokerId',
7575
// eslint-disable-next-line react/no-unstable-nested-components
76-
cell: ({ row: { id }, getValue }) => (
76+
cell: ({ getValue }) => (
7777
<S.RowCell>
7878
<LinkCell
7979
value={`${getValue<string | number>()}`}
8080
to={encodeURIComponent(`${getValue<string | number>()}`)}
8181
/>
82-
{id === String(activeControllers) && (
82+
{getValue<string | number>() === activeControllers && (
8383
<Tooltip
8484
value={<CheckMarkRoundIcon />}
8585
content="Active Controller"

0 commit comments

Comments
 (0)