Skip to content

Commit

Permalink
fix(ref: no-ref): fix issues
Browse files Browse the repository at this point in the history
  • Loading branch information
andriikamaldinov1 committed Nov 11, 2024
1 parent bd6b39e commit 9902f69
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class CypressTestMaskComponent {
protected _config = inject<NgxMaskConfig>(NGX_MASK_CONFIG);
@Input() public mask = '';

@Input() public hiddenInput = this._config.hiddenInput;
@Input() public hiddenInput = null;

@Input() public allowNegativeNumbers = false;

Expand All @@ -50,7 +50,7 @@ export class CypressTestMaskComponent {

@Input() public showMaskTyped = false;

@Input() public decimalMarker = this._config.decimalMarker;
@Input() public decimalMarker = '.';

@Input() public thousandSeparator = ',';

Expand Down

0 comments on commit 9902f69

Please sign in to comment.