mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 18:14:17 +00:00
79730: Fix tslint issues
This commit is contained in:
@@ -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
|
||||||
|
@@ -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}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user