Fix timestamp search (#75)
This commit is contained in:
parent
be2d38133d
commit
7b61a9b51d
1 changed files with 4 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue