79730: Fix tslint issues

This commit is contained in:
Yura Bondarenko
2021-06-01 15:31:30 +02:00
parent c60fa2c441
commit 08878941ab
2 changed files with 5 additions and 3 deletions

View File

@@ -111,10 +111,10 @@ export class InputSuggestionsComponent implements ControlValueAccessor, OnChange
@Input() disabled = false; @Input() disabled = false;
propagateChange = (_: any) => { propagateChange = (_: any) => {
/* Empty implementation */ /* Empty implementation */
}; }
propagateTouch = (_: any) => { propagateTouch = (_: any) => {
/* Empty implementation */ /* Empty implementation */
}; }
/** /**
* When any of the inputs change, check if we should still show the suggestions * When any of the inputs change, check if we should still show the suggestions

View File

@@ -45,7 +45,7 @@ export class SearchFilterComponent implements OnInit {
/** /**
* True when the filter toggle button is focused * True when the filter toggle button is focused
*/ */
focusBox: boolean = false; focusBox = false;
/** /**
* Emits true when the filter is currently collapsed in the store * Emits true when the filter is currently collapsed in the store
@@ -141,10 +141,12 @@ export class SearchFilterComponent implements OnInit {
} }
get regionId(): string { get regionId(): string {
// tslint:disable-next-line:no-string-literal
return `search-filter-region-${this.constructor['ɵcmp'].id}`; return `search-filter-region-${this.constructor['ɵcmp'].id}`;
} }
get toggleId(): string { get toggleId(): string {
// tslint:disable-next-line:no-string-literal
return `search-filter-toggle-${this.constructor['ɵcmp'].id}`; return `search-filter-toggle-${this.constructor['ɵcmp'].id}`;
} }