mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 05:53:03 +00:00
ESLint: fix indentation
This commit is contained in:
@@ -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
|
||||
|
@@ -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
|
||||
|
Reference in New Issue
Block a user