react-windows-ui icon indicating copy to clipboard operation
react-windows-ui copied to clipboard

Cannot access selection files with input type="file" inside Dialog

Open Mhde96 opened this issue 10 months ago • 0 comments

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 ;)

Mhde96 avatar Dec 25 '24 07:12 Mhde96