forked from hazza/dspace-angular
67478: External source link + pagination fix
This commit is contained in:
@@ -1,2 +1,2 @@
|
|||||||
<div>{{object.display}}</div>
|
<div>{{object.display}}</div>
|
||||||
<div *ngIf="uri"><a [href]="uri.value">{{uri.value}}</a></div>
|
<div *ngIf="uri"><a target="_blank" [href]="uri.value">{{uri.value}}</a></div>
|
||||||
|
@@ -69,6 +69,14 @@ export class DsDynamicLookupRelationSelectionTabComponent {
|
|||||||
*/
|
*/
|
||||||
@Output() selectObject: EventEmitter<ListableObject> = new EventEmitter<ListableObject>();
|
@Output() selectObject: EventEmitter<ListableObject> = new EventEmitter<ListableObject>();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The initial pagination to use
|
||||||
|
*/
|
||||||
|
initialPagination = Object.assign(new PaginationComponentOptions(), {
|
||||||
|
id: 'submission-relation-list',
|
||||||
|
pageSize: 5
|
||||||
|
});
|
||||||
|
|
||||||
constructor(private router: Router,
|
constructor(private router: Router,
|
||||||
private searchConfigService: SearchConfigurationService) {
|
private searchConfigService: SearchConfigurationService) {
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user