We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a40146 commit 308e6f3Copy full SHA for 308e6f3
kafka-ui-react-app/src/components/Brokers/BrokersList/BrokersList.tsx
@@ -73,13 +73,13 @@ const BrokersList: React.FC = () => {
73
header: 'Broker ID',
74
accessorKey: 'brokerId',
75
// eslint-disable-next-line react/no-unstable-nested-components
76
- cell: ({ row: { id }, getValue }) => (
+ cell: ({ getValue }) => (
77
<S.RowCell>
78
<LinkCell
79
value={`${getValue<string | number>()}`}
80
to={encodeURIComponent(`${getValue<string | number>()}`)}
81
/>
82
- {id === String(activeControllers) && (
+ {getValue<string | number>() === activeControllers && (
83
<Tooltip
84
value={<CheckMarkRoundIcon />}
85
content="Active Controller"
0 commit comments