Skip to content

Commit

Permalink
Update sb-file-uploader-hoc.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
RedMan13 authored Nov 24, 2024
1 parent 4579943 commit 48cc4d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/sb-file-uploader-hoc.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ const SBFileUploaderHOC = function (WrappedComponent) {
} else {
// create <input> element and add it to DOM
this.inputElement = document.createElement('input');
this.inputElement.accept = '.pmp,.sb,.sb2,.sb3,.pm';
this.inputElement.accept = '.sb,.sb2,.sb3,.pm,.pmp';
this.inputElement.style = 'display: none;';
this.inputElement.type = 'file';
this.inputElement.onchange = this.handleChange; // connects to step 3
Expand Down

0 comments on commit 48cc4d6

Please sign in to comment.