fix(ui) - check for existing filters to avoid duplicate
This commit is contained in:
parent
e24c25f785
commit
d3db681888
1 changed files with 3 additions and 0 deletions
|
|
@ -58,6 +58,9 @@ const SessionSearchQueryParamHandler = React.memo((props: Props) => {
|
|||
};
|
||||
|
||||
const applyFilterFromQuery = () => {
|
||||
if (appliedFilter.filters.size > 0) {
|
||||
return;
|
||||
}
|
||||
const entires = getQueryObject(history.location.search);
|
||||
if (entires.length > 0) {
|
||||
entires.forEach(addFilter);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue