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 be2d381 commit 7b61a9bCopy full SHA for 7b61a9b
kafka-ui-react-app/src/components/Topics/Details/Messages/Messages.tsx
@@ -67,7 +67,10 @@ const Messages: React.FC<Props> = ({
67
);
68
const [searchOffset, setSearchOffset] = React.useState<string>('0');
69
const [selectedPartitions, setSelectedPartitions] = React.useState<Option[]>(
70
- []
+ partitions.map((p) => ({
71
+ value: p.partition,
72
+ label: p.partition.toString(),
73
+ }))
74
75
const [queryParams, setQueryParams] = React.useState<
76
Partial<TopicMessageQueryParams>
0 commit comments