Skip to content

Commit

Permalink
[FE] Fix timestamp filter & partitions selection (#3569)
Browse files Browse the repository at this point in the history
  • Loading branch information
NeiruBugz committed Mar 28, 2023
1 parent 4623f8d commit ef0dacb
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,10 @@ const Filters: React.FC<FiltersProps> = ({
props.seekType = SeekType.TIMESTAMP;
}

if (selectedPartitions.length !== partitions.length) {
if (
selectedPartitions.length !== partitions.length ||
currentSeekType === SeekType.TIMESTAMP
) {
// not everything in the partition is selected
props.seekTo = selectedPartitions.map(({ value }) => {
const offsetProperty =
Expand Down

0 comments on commit ef0dacb

Please sign in to comment.