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 8e781e5 commit d10996eCopy full SHA for d10996e
kafka-ui-react-app/src/components/Topics/Topic/Messages/Filters/Filters.tsx
@@ -231,9 +231,13 @@ const Filters: React.FC<FiltersProps> = ({
231
props.seekType = SeekType.TIMESTAMP;
232
}
233
234
+ const isSeekTypeWithSeekTo =
235
+ props.seekType === SeekType.TIMESTAMP ||
236
+ props.seekType === SeekType.OFFSET;
237
+
238
if (
239
selectedPartitions.length !== partitions.length ||
- currentSeekType === SeekType.TIMESTAMP
240
+ isSeekTypeWithSeekTo
241
) {
242
// not everything in the partition is selected
243
props.seekTo = selectedPartitions.map(({ value }) => {
0 commit comments