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
Hi, I'm trying to use this component with IE11, but I'm getting this error while file is uploaded: It works on Chrome.
EDIT: Here they say that FileReader.readAsBinaryString has been deprecated. https://stackoverflow.com/a/47049347/1210819
FileReader.readAsBinaryString
The text was updated successfully, but these errors were encountered:
I have imported file upload component into project and modified line:
switch (readAs) { case 'binary': { reader.readAsText(file); break; }
And it works on IE11
Other option is to use: <FileReaderInput as="text" id="my-file-input"....
<FileReaderInput as="text" id="my-file-input"....
Sorry, something went wrong.
No branches or pull requests
Hi, I'm trying to use this component with IE11, but I'm getting this error while file is uploaded:
It works on Chrome.
EDIT:
Here they say that
FileReader.readAsBinaryString
has been deprecated.https://stackoverflow.com/a/47049347/1210819
The text was updated successfully, but these errors were encountered: