react-windows-ui
react-windows-ui copied to clipboard
Cannot access selection files with input type="file" inside Dialog
Hi ,
When using the Dialog component
I am unable to interact with the input element of type file to select a file.
and I created a new project to make sure nothing effect
Expected Behavior: When click on Choose File, the file selection dialog should appear. Actual Behavior: When click on Choose File, the file selection dialog does not appear.
import { Dialog } from "react-windows-ui";
export default App = () => {
return (
<Dialog isVisible={true} onBackdropPress={() => {}}>
<input type="file" />
</Dialog>
)
}
- react window ui 4,2,4
- Operating System : Windows 11
- Browser : Chrome
- react : ^18.3.1
Thank you in advance ;)