Fix messages filtering by timestamp (#1781)
Co-authored-by: Naresh Kumar Reddy <naresh.kumar.reddy@dnb.no> Co-authored-by: Roman Zabaluev <rzabaluev@provectus.com>
This commit is contained in:
parent
4b517c83a0
commit
f8b4b17ac3
1 changed files with 8 additions and 1 deletions
|
@ -208,7 +208,14 @@ const Filters: React.FC<FiltersProps> = ({
|
||||||
search: `?${qs}`,
|
search: `?${qs}`,
|
||||||
});
|
});
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
}, [seekDirection, queryType, activeFilter]);
|
}, [
|
||||||
|
seekDirection,
|
||||||
|
queryType,
|
||||||
|
activeFilter,
|
||||||
|
currentSeekType,
|
||||||
|
timestamp,
|
||||||
|
query,
|
||||||
|
]);
|
||||||
|
|
||||||
const toggleSeekDirection = (val: string) => {
|
const toggleSeekDirection = (val: string) => {
|
||||||
switch (val) {
|
switch (val) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue