From 9902f6932df2adbedf472528cc1207d0a0683fe5 Mon Sep 17 00:00:00 2001 From: andriikamaldinov1 Date: Mon, 11 Nov 2024 15:35:13 +0200 Subject: [PATCH] fix(ref: no-ref): fix issues --- .../src/test/utils/cypress-test-component.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/ngx-mask-lib/src/test/utils/cypress-test-component.component.ts b/projects/ngx-mask-lib/src/test/utils/cypress-test-component.component.ts index 8117cdb8..70cb470a 100644 --- a/projects/ngx-mask-lib/src/test/utils/cypress-test-component.component.ts +++ b/projects/ngx-mask-lib/src/test/utils/cypress-test-component.component.ts @@ -38,7 +38,7 @@ export class CypressTestMaskComponent { protected _config = inject(NGX_MASK_CONFIG); @Input() public mask = ''; - @Input() public hiddenInput = this._config.hiddenInput; + @Input() public hiddenInput = null; @Input() public allowNegativeNumbers = false; @@ -50,7 +50,7 @@ export class CypressTestMaskComponent { @Input() public showMaskTyped = false; - @Input() public decimalMarker = this._config.decimalMarker; + @Input() public decimalMarker = '.'; @Input() public thousandSeparator = ',';