|
@@ -216,7 +216,15 @@ const Filters: React.FC<FiltersProps> = ({
|
|
search: `?${qs}`,
|
|
search: `?${qs}`,
|
|
});
|
|
});
|
|
},
|
|
},
|
|
- [seekDirection, queryType, activeFilter, currentSeekType, timestamp, query]
|
|
|
|
|
|
+ [
|
|
|
|
+ seekDirection,
|
|
|
|
+ queryType,
|
|
|
|
+ activeFilter,
|
|
|
|
+ currentSeekType,
|
|
|
|
+ timestamp,
|
|
|
|
+ query,
|
|
|
|
+ selectedPartitions,
|
|
|
|
+ ]
|
|
);
|
|
);
|
|
|
|
|
|
const handleSSECancel = () => {
|
|
const handleSSECancel = () => {
|
|
@@ -344,10 +352,26 @@ const Filters: React.FC<FiltersProps> = ({
|
|
if (location.search?.length === 0) {
|
|
if (location.search?.length === 0) {
|
|
handleFiltersSubmit(offset);
|
|
handleFiltersSubmit(offset);
|
|
}
|
|
}
|
|
- }, [handleFiltersSubmit, location]);
|
|
|
|
|
|
+ }, [
|
|
|
|
+ seekDirection,
|
|
|
|
+ queryType,
|
|
|
|
+ activeFilter,
|
|
|
|
+ currentSeekType,
|
|
|
|
+ timestamp,
|
|
|
|
+ query,
|
|
|
|
+ location,
|
|
|
|
+ ]);
|
|
React.useEffect(() => {
|
|
React.useEffect(() => {
|
|
handleFiltersSubmit(offset);
|
|
handleFiltersSubmit(offset);
|
|
- }, [handleFiltersSubmit, seekDirection]);
|
|
|
|
|
|
+ }, [
|
|
|
|
+ seekDirection,
|
|
|
|
+ queryType,
|
|
|
|
+ activeFilter,
|
|
|
|
+ currentSeekType,
|
|
|
|
+ timestamp,
|
|
|
|
+ query,
|
|
|
|
+ seekDirection,
|
|
|
|
+ ]);
|
|
|
|
|
|
React.useEffect(() => {
|
|
React.useEffect(() => {
|
|
setIsTailing(isLive);
|
|
setIsTailing(isLive);
|