41914: DSO list finished without item count

This commit is contained in:
Lotte Hofstede
2017-06-09 14:40:14 +02:00
parent bdf6d006e7
commit 3929a49c1d
21 changed files with 534 additions and 30 deletions

View File

@@ -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() {
}
}