Skip to content

Commit 85e6bf5

Browse files
bniwredycainar-g
authored andcommitted
Pull request 2375: ADG-9850 query-log-search-form-fix
Updates #7704. Squashed commit of the following: commit 16ef53e Author: Ainar Garipov <[email protected]> Date: Thu Mar 20 13:24:48 2025 +0300 all: upd chlog commit d0c0935 Author: Igor Lobanov <[email protected]> Date: Wed Mar 19 19:02:13 2025 +0100 fixed query log search form
1 parent cb5de5c commit 85e6bf5

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ See also the [v0.107.59 GitHub milestone][ms-v0.107.59].
1818
NOTE: Add new changes BELOW THIS COMMENT.
1919
-->
2020

21+
### Fixed
22+
23+
- The search form not working in the query log ([#7704]).
24+
25+
[#7704]: https://github.com/AdguardTeam/AdGuardHome/issues/7704
26+
2127
<!--
2228
NOTE: Add new changes ABOVE THIS COMMENT.
2329
-->

client/src/components/Logs/Filters/Form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export const Form = ({ className, setIsLoading }: Props) => {
6262
if (searchUrlParam !== searchValue) {
6363
setValue('search', searchUrlParam ? searchUrlParam.toString() : '');
6464
}
65-
}, [history.location.search, setValue, searchValue]);
65+
}, [history.location.search]);
6666

6767
const onInputClear = async () => {
6868
setIsLoading(true);

0 commit comments

Comments
 (0)