Fixes provectus/kafka-ui#3614
This commit is contained in:
parent
6a40146fb1
commit
308e6f3ffc
1 changed files with 2 additions and 2 deletions
|
@ -73,13 +73,13 @@ const BrokersList: React.FC = () => {
|
|||
header: 'Broker ID',
|
||||
accessorKey: 'brokerId',
|
||||
// eslint-disable-next-line react/no-unstable-nested-components
|
||||
cell: ({ row: { id }, getValue }) => (
|
||||
cell: ({ getValue }) => (
|
||||
<S.RowCell>
|
||||
<LinkCell
|
||||
value={`${getValue<string | number>()}`}
|
||||
to={encodeURIComponent(`${getValue<string | number>()}`)}
|
||||
/>
|
||||
{id === String(activeControllers) && (
|
||||
{getValue<string | number>() === activeControllers && (
|
||||
<Tooltip
|
||||
value={<CheckMarkRoundIcon />}
|
||||
content="Active Controller"
|
||||
|
|
Loading…
Add table
Reference in a new issue