forked from hazza/dspace-angular
20 lines
618 B
TypeScript
20 lines
618 B
TypeScript
import { Component, OnInit, Input } from '@angular/core';
|
|
import { Item } from "../../../core/shared/item.model";
|
|
import { Observable } from "rxjs";
|
|
import { ItemPageSpecificFieldComponent } from "../item-page-specific-field.component";
|
|
|
|
@Component({
|
|
selector: 'ds-item-page-abstract-field',
|
|
templateUrl: './../item-page-specific-field.component.html'
|
|
})
|
|
export class ItemPageAbstractFieldComponent extends ItemPageSpecificFieldComponent implements OnInit {
|
|
|
|
@Input() item: Observable<Item>;
|
|
|
|
fields : string[] = [
|
|
"dc.description.abstract"
|
|
];
|
|
label : string = "item.page.abstract";
|
|
|
|
}
|