Skip to content

Commit 48cc4d6

Browse files
authored
Update sb-file-uploader-hoc.jsx
1 parent 4579943 commit 48cc4d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/sb-file-uploader-hoc.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ const SBFileUploaderHOC = function (WrappedComponent) {
104104
} else {
105105
// create <input> element and add it to DOM
106106
this.inputElement = document.createElement('input');
107-
this.inputElement.accept = '.pmp,.sb,.sb2,.sb3,.pm';
107+
this.inputElement.accept = '.sb,.sb2,.sb3,.pm,.pmp';
108108
this.inputElement.style = 'display: none;';
109109
this.inputElement.type = 'file';
110110
this.inputElement.onchange = this.handleChange; // connects to step 3

0 commit comments

Comments
 (0)