[CST-9636] Fix lint

This commit is contained in:
Giuseppe Digilio
2023-05-12 09:25:47 +02:00
parent 6808eec3a4
commit 377e27b305
9 changed files with 60 additions and 60 deletions

View File

@@ -26,7 +26,7 @@ export class BulkAccessComponent implements OnInit {
/**
* The selection list id
*/
listId: string = 'bulk-access-list';
listId = 'bulk-access-list';
/**
* The list of the objects already selected
@@ -58,7 +58,7 @@ export class BulkAccessComponent implements OnInit {
distinctUntilChanged(),
map((list: SelectableListState) => this.generateIdListBySelectedElements(list))
).subscribe(this.objectsSelected$)
)
);
}
canExport(): boolean {
@@ -70,7 +70,7 @@ export class BulkAccessComponent implements OnInit {
* This will also reset the state of the child components (bitstream and item access)
*/
reset(): void {
this.settings.reset()
this.settings.reset();
}
/**