maxim_tereshin 5 роки тому
батько
коміт
7b61a9b51d

+ 4 - 1
kafka-ui-react-app/src/components/Topics/Details/Messages/Messages.tsx

@@ -67,7 +67,10 @@ const Messages: React.FC<Props> = ({
   );
   const [searchOffset, setSearchOffset] = React.useState<string>('0');
   const [selectedPartitions, setSelectedPartitions] = React.useState<Option[]>(
-    []
+    partitions.map((p) => ({
+      value: p.partition,
+      label: p.partition.toString(),
+    }))
   );
   const [queryParams, setQueryParams] = React.useState<
     Partial<TopicMessageQueryParams>