ESLint: fix indentation

This commit is contained in:
Yury Bondarenko
2023-06-27 16:14:46 +02:00
parent b505cbc690
commit 0690a201dc
410 changed files with 3488 additions and 3488 deletions

View File

@@ -24,7 +24,7 @@ export class ItemSelectComponent extends ObjectSelectComponent<Item> {
* Whether or not to hide the collection column
*/
@Input()
hideCollection = false;
hideCollection = false;
/**
* The routes to the items their pages

View File

@@ -23,65 +23,65 @@ export abstract class ObjectSelectComponent<TDomain> implements OnInit, OnDestro
* A unique key used for the object select service
*/
@Input()
key: string;
key: string;
/**
* The list of DSpaceObjects to display
*/
@Input()
dsoRD$: Observable<RemoteData<PaginatedList<TDomain>>>;
dsoRD$: Observable<RemoteData<PaginatedList<TDomain>>>;
/**
* The pagination options used to display the DSpaceObjects
*/
@Input()
paginationOptions: PaginationComponentOptions;
paginationOptions: PaginationComponentOptions;
/**
* The sorting options used to display the DSpaceObjects
*/
@Input()
sortOptions: SortOptions;
sortOptions: SortOptions;
/**
* The message key used for the confirm button
* @type {string}
*/
@Input()
confirmButton: string;
confirmButton: string;
/**
* Authorize check to enable the selection when present.
*/
@Input()
featureId: FeatureID;
featureId: FeatureID;
/**
* The message key used for the cancel button
* @type {string}
*/
@Input()
cancelButton: string;
cancelButton: string;
/**
* An event fired when the cancel button is clicked
*/
@Output()
cancel = new EventEmitter<any>();
cancel = new EventEmitter<any>();
/**
* EventEmitter to return the selected UUIDs when the confirm button is pressed
* @type {EventEmitter<string[]>}
*/
@Output()
confirm: EventEmitter<string[]> = new EventEmitter<string[]>();
confirm: EventEmitter<string[]> = new EventEmitter<string[]>();
/**
* Whether or not to render the confirm button as danger (for example if confirm deletes objects)
* Defaults to false
*/
@Input()
dangerConfirm = false;
dangerConfirm = false;
/**
* The list of selected UUIDs