forked from hazza/dspace-angular
added missing decorator for classes that use Angular features
This commit is contained in:
@@ -1,9 +1,12 @@
|
||||
import { EventEmitter, Input, Output, Directive } from '@angular/core';
|
||||
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
||||
|
||||
/**
|
||||
* Abstract class that represents value input components
|
||||
*/
|
||||
@Directive()
|
||||
@Component({
|
||||
selector: 'ds-value-input',
|
||||
template: ''
|
||||
})
|
||||
export abstract class ValueInputComponent<T> {
|
||||
@Input() index: number;
|
||||
/**
|
||||
|
Reference in New Issue
Block a user