mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 05:53:03 +00:00
added missing decorator for classes that use Angular features
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { EventEmitter, Input, OnDestroy, OnInit, Output, Directive } from '@angular/core';
|
||||
import { Component, EventEmitter, Input, OnDestroy, OnInit, Output } from '@angular/core';
|
||||
import { take } from 'rxjs/operators';
|
||||
import { Observable } from 'rxjs';
|
||||
import { RemoteData } from '../../../core/data/remote-data';
|
||||
@@ -10,7 +10,10 @@ import { SortOptions } from '../../../core/cache/models/sort-options.model';
|
||||
/**
|
||||
* An abstract component used to select DSpaceObjects from a specific list and returning the UUIDs of the selected DSpaceObjects
|
||||
*/
|
||||
@Directive()
|
||||
@Component({
|
||||
selector: 'ds-object-select-abstract',
|
||||
template: ''
|
||||
})
|
||||
export abstract class ObjectSelectComponent<TDomain> implements OnInit, OnDestroy {
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user