Skip to content

Commit 30acbfe

Browse files
Merge pull request #28 from ezra0619/weird-behaviour-klp-form-file-input
Inconsistent cursor pointer behaviour on klp form file input
2 parents 2f37b39 + a01c723 commit 30acbfe

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

projects/klippa/ngx-enhancy-forms/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@klippa/ngx-enhancy-forms",
3-
"version": "14.6.1",
3+
"version": "14.6.2",
44
"publishConfig": {
55
"access": "public"
66
},

projects/klippa/ngx-enhancy-forms/src/lib/elements/file-input/file-input.component.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<div class="componentContainer" [ngClass]="{fullParentSize: useFullParentSize}">
22
<div class="buttonContainer">
3-
<klp-form-button class="uploadButton" [isLoading]="isLoading" (click)="uploadFileClicked()">
4-
Upload a file
5-
</klp-form-button>
63
<input
74
type="file"
85
#nativeInputRef
96
(change)="onChange($event.target.files)"
107
[multiple]="multiple"
118
[disabled]="disabled"
129
>
10+
<klp-form-button class="uploadButton" [isLoading]="isLoading" (click)="uploadFileClicked()">
11+
Upload a file
12+
</klp-form-button>
1313
</div>
1414
<div class="fileName" *ngIf="!onlyShowUploadButton">
1515
{{getFileNames()}}

0 commit comments

Comments
 (0)