Skip to content

Commit

Permalink
fixes paste function issue in inputmask
Browse files Browse the repository at this point in the history
  • Loading branch information
navedqb authored May 29, 2024
1 parent 3d5b78e commit fda5f8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/inputmask/inputmask.ts
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ export class InputMask implements OnInit, ControlValueAccessor {
}

handleInputChange(event: Event) {
if (this.readonly) {
if (this.readonly || this.disabled) {
return;
}

Expand Down

0 comments on commit fda5f8e

Please sign in to comment.