Skip to content

Commit

Permalink
Merge pull request #28 from ezra0619/weird-behaviour-klp-form-file-input
Browse files Browse the repository at this point in the history
Inconsistent cursor pointer behaviour on klp form file input
  • Loading branch information
wouter-willems authored Aug 3, 2023
2 parents 2f37b39 + a01c723 commit 30acbfe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion projects/klippa/ngx-enhancy-forms/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@klippa/ngx-enhancy-forms",
"version": "14.6.1",
"version": "14.6.2",
"publishConfig": {
"access": "public"
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<div class="componentContainer" [ngClass]="{fullParentSize: useFullParentSize}">
<div class="buttonContainer">
<klp-form-button class="uploadButton" [isLoading]="isLoading" (click)="uploadFileClicked()">
Upload a file
</klp-form-button>
<input
type="file"
#nativeInputRef
(change)="onChange($event.target.files)"
[multiple]="multiple"
[disabled]="disabled"
>
<klp-form-button class="uploadButton" [isLoading]="isLoading" (click)="uploadFileClicked()">
Upload a file
</klp-form-button>
</div>
<div class="fileName" *ngIf="!onlyShowUploadButton">
{{getFileNames()}}
Expand Down

0 comments on commit 30acbfe

Please sign in to comment.