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 181fa4e commit 4d9b6d7Copy full SHA for 4d9b6d7
frontend/src/components/Connect/Clusters/ui/List/List.tsx
@@ -14,6 +14,11 @@ import TasksCell from './Cells/TasksCell';
14
const helper = createColumnHelper<Connect>();
15
export const columns = [
16
helper.accessor('name', { cell: NameCell, size: 600 }),
17
+ helper.accessor('version', {
18
+ header: 'Version',
19
+ cell: ({ getValue }) => getValue(),
20
+ enableSorting: true,
21
+ }),
22
helper.display({
23
header: 'Connectors',
24
id: 'connectors',
@@ -43,6 +48,7 @@ const List = ({ connects }: Props) => {
43
48
navigate(`${clusterConnectorsPath(clusterName)}?connect=${name}`);
44
49
}}
45
50
emptyMessage="No kafka connect clusters"
51
+ enableSorting
46
52
/>
47
53
);
54
};
0 commit comments