mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 18:44:14 +00:00

Add the Item Withdraw and Reistate action Add the make Item Private and Public action Add the Permanently Delete action
21 lines
575 B
TypeScript
21 lines
575 B
TypeScript
import {Component, Input, OnInit} from '@angular/core';
|
|
import {Item} from '../../../core/shared/item.model';
|
|
import {Metadatum} from '../../../core/shared/metadatum.model';
|
|
|
|
@Component({
|
|
selector: 'ds-modify-item-overview',
|
|
templateUrl: './modify-item-overview.component.html'
|
|
})
|
|
/**
|
|
* Component responsible for rendering a table containing the metadatavalues from the to be edited item
|
|
*/
|
|
export class ModifyItemOverviewComponent implements OnInit {
|
|
|
|
@Input() item: Item;
|
|
metadata: Metadatum[];
|
|
|
|
ngOnInit(): void {
|
|
this.metadata = this.item.metadata;
|
|
}
|
|
}
|