mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-12 04:23:04 +00:00
93803: Ensure data services are called *DataService
This commit is contained in:
@@ -14,7 +14,7 @@ import { hasValue } from '../empty.util';
|
||||
import { reduce, startWith, switchMap } from 'rxjs/operators';
|
||||
import { RemoteData } from '../../core/data/remote-data';
|
||||
import { PaginatedList } from '../../core/data/paginated-list.model';
|
||||
import { EntityTypeService } from '../../core/data/entity-type.service';
|
||||
import { EntityTypeDataService } from '../../core/data/entity-type-data.service';
|
||||
import { ItemType } from '../../core/shared/item-relationships/item-type.model';
|
||||
import { getFirstSucceededRemoteWithNotEmptyData } from '../../core/shared/operators';
|
||||
import { FindListOptions } from '../../core/data/find-list-options.model';
|
||||
@@ -83,12 +83,12 @@ export class EntityDropdownComponent implements OnInit, OnDestroy {
|
||||
* Initialize instance variables
|
||||
*
|
||||
* @param {ChangeDetectorRef} changeDetectorRef
|
||||
* @param {EntityTypeService} entityTypeService
|
||||
* @param {EntityTypeDataService} entityTypeService
|
||||
* @param {ElementRef} el
|
||||
*/
|
||||
constructor(
|
||||
private changeDetectorRef: ChangeDetectorRef,
|
||||
private entityTypeService: EntityTypeService,
|
||||
private entityTypeService: EntityTypeDataService,
|
||||
private el: ElementRef
|
||||
) { }
|
||||
|
||||
|
Reference in New Issue
Block a user