Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge upstream v8.2.11 #78

Merged
merged 14 commits into from
Apr 28, 2022
1 change: 0 additions & 1 deletion src/assets/javascripts/components/search/query/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ export function watchSearchQuery(
param$.subscribe(value => { // TODO: not ideal - find a better way
if (value) {
el.value = value
el.focus()
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it is better to keep the call to el.focus() here and instead remove it from a few lines above in the same file. That way we minimize merge conflicts.

}
})

Expand Down