Skip to content

Commit

Permalink
Fix upload file selector value resetting
Browse files Browse the repository at this point in the history
Fix
  • Loading branch information
guerler committed May 18, 2018
1 parent a4f99c8 commit 2fef59a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/galaxy/scripts/utils/uploadbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@
el.append(
$input.change(e => {
opts.onchange(e.target.files);
$(this).val("");
e.target.value = null;
})
);

Expand Down

0 comments on commit 2fef59a

Please sign in to comment.