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
tetrisly-react/src/components/TextInput/useTextInput.ts
Lines 56 to 62 in b407d25
Possible resolve:
const handleOnClear: MouseEventHandler<HTMLButtonElement> = () => { setInnerValue(''); const input = containerRef.current?.querySelector('input'); if (!input) return; const setter = Object.getOwnPropertyDescriptor( input.constructor.prototype, 'value', )?.set; if (!setter) return; setter.call(input, ''); const e = new Event('input', { bubbles: true }); input.dispatchEvent(e); };
The text was updated successfully, but these errors were encountered:
adrian-potepa
Successfully merging a pull request may close this issue.
tetrisly-react/src/components/TextInput/useTextInput.ts
Lines 56 to 62 in b407d25
Possible resolve:
The text was updated successfully, but these errors were encountered: