Skip to content

Commit 0e85f0d

Browse files
author
vvo
committed
fix(searchBox): do not update input's value if focused
fixes #163
1 parent 07e09e9 commit 0e85f0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

widgets/search-box.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ function searchbox(params) {
5656
}
5757

5858
helper.on('change', function(state) {
59-
if (input.value !== state.query) {
59+
if (input !== document.activeElement && input.value !== state.query) {
6060
input.value = state.query;
6161
}
6262
});

0 commit comments

Comments
 (0)