We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4623f8d commit ef0dacbCopy full SHA for ef0dacb
kafka-ui-react-app/src/components/Topics/Topic/Messages/Filters/Filters.tsx
@@ -231,7 +231,10 @@ const Filters: React.FC<FiltersProps> = ({
231
props.seekType = SeekType.TIMESTAMP;
232
}
233
234
- if (selectedPartitions.length !== partitions.length) {
+ if (
235
+ selectedPartitions.length !== partitions.length ||
236
+ currentSeekType === SeekType.TIMESTAMP
237
+ ) {
238
// not everything in the partition is selected
239
props.seekTo = selectedPartitions.map(({ value }) => {
240
const offsetProperty =
0 commit comments