Skip to content

Commit

Permalink
Merge pull request #13723 from qburst/13722--fix-fileupload-right-cli…
Browse files Browse the repository at this point in the history
…ck-trigger

Fix #13722: FileUpload click instead of mouseup
  • Loading branch information
cetincakiroglu authored Nov 8, 2023
2 parents 66b8fe5 + a9dc071 commit 2bb832a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/fileupload/fileupload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ import { FileBeforeUploadEvent, FileProgressEvent, FileRemoveEvent, FileSelectEv
[ngClass]="{ 'p-button p-component p-fileupload-choose': true, 'p-button-icon-only': !basicButtonLabel, 'p-fileupload-choose-selected': hasFiles(), 'p-focus': focus, 'p-disabled': disabled }"
[ngStyle]="style"
[class]="styleClass"
(mouseup)="onBasicUploaderClick()"
(click)="onBasicUploaderClick()"
(keydown)="onBasicKeydown($event)"
tabindex="0"
pRipple
Expand Down

0 comments on commit 2bb832a

Please sign in to comment.