mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-12 04:23:04 +00:00
41914: DSO list finished without item count
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
import { Component, Input, OnInit } from '@angular/core';
|
||||
import { DSpaceObject } from "../../core/shared/dspace-object.model";
|
||||
import { ResourceType } from "../../core/shared/resource-type";
|
||||
|
||||
@Component({
|
||||
selector: 'ds-object-list-element',
|
||||
styleUrls: ['./object-list-element.component.css'],
|
||||
templateUrl: './object-list-element.component.html'
|
||||
})
|
||||
export class ObjectListElementComponent {
|
||||
|
||||
public type = ResourceType;
|
||||
|
||||
@Input() object: DSpaceObject;
|
||||
|
||||
data: any = {};
|
||||
|
||||
constructor() {
|
||||
this.universalInit();
|
||||
}
|
||||
|
||||
universalInit() {
|
||||
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user