Skip to content

Commit

Permalink
Merge pull request #4668 from FlipWarthog/PV4667
Browse files Browse the repository at this point in the history
Fix #4667 - FileUpload: Basic uploader click
  • Loading branch information
tugcekucukoglu authored Oct 25, 2023
2 parents 72f117b + 031d089 commit 91f683a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/fileupload/FileUpload.vue
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ export default {
},
onBasicUploaderClick(event) {
if (this.hasFiles) this.upload();
if (event.button === 0) this.$refs.fileInput.click();
else if (event.button === 0) this.$refs.fileInput.click();
},
remove(index) {
this.clearInputElement();
Expand Down

0 comments on commit 91f683a

Please sign in to comment.