We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
SingleSelect should not steal back focus if user has already moved on after selecting a value.
Focus is brought back to the SingleSelect component after a timeout. I think it's because of SingleSelect.tsx row 321:
SingleSelect.tsx
321
private focusToInputAndSelectText = () => { if (!!this.filterInputRef && this.filterInputRef.current) { this.filterInputRef.current.focus(); setTimeout(() => this.filterInputRef.current?.select(), 100); } };
I'm currently working in the PTV team so you can reach out to me to discuss if more information is needed.
12.0.2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected Behavior or Possible Solution
SingleSelect should not steal back focus if user has already moved on after selecting a value.
Actual Behavior and Screenshots
Focus is brought back to the SingleSelect component after a timeout. I think it's because of
SingleSelect.tsx
row321
:Steps to Reproduce the Problem
I'm currently working in the PTV team so you can reach out to me to discuss if more information is needed.
Specifications
12.0.2
The text was updated successfully, but these errors were encountered: