We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07e09e9 commit 0e85f0dCopy full SHA for 0e85f0d
widgets/search-box.js
@@ -56,7 +56,7 @@ function searchbox(params) {
56
}
57
58
helper.on('change', function(state) {
59
- if (input.value !== state.query) {
+ if (input !== document.activeElement && input.value !== state.query) {
60
input.value = state.query;
61
62
});
0 commit comments