mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-09 19:13:08 +00:00
restore property that was accidentally removed during merge
This commit is contained in:
@@ -402,6 +402,7 @@ export class DsDynamicFormControlContainerComponent extends DynamicFormControlCo
|
|||||||
modalComp.repeatable = this.model.repeatable;
|
modalComp.repeatable = this.model.repeatable;
|
||||||
modalComp.listId = this.listId;
|
modalComp.listId = this.listId;
|
||||||
modalComp.relationshipOptions = this.model.relationship;
|
modalComp.relationshipOptions = this.model.relationship;
|
||||||
|
modalComp.label = this.model.label;
|
||||||
modalComp.metadataFields = this.model.metadataFields;
|
modalComp.metadataFields = this.model.metadataFields;
|
||||||
modalComp.item = this.item;
|
modalComp.item = this.item;
|
||||||
modalComp.collection = this.collection;
|
modalComp.collection = this.collection;
|
||||||
|
@@ -42,6 +42,15 @@ import { Router } from '@angular/router';
|
|||||||
*/
|
*/
|
||||||
export class DsDynamicLookupRelationModalComponent implements OnInit, OnDestroy {
|
export class DsDynamicLookupRelationModalComponent implements OnInit, OnDestroy {
|
||||||
@Output() selectEvent: EventEmitter<ListableObject[]> = new EventEmitter<ListableObject[]>();
|
@Output() selectEvent: EventEmitter<ListableObject[]> = new EventEmitter<ListableObject[]>();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The label to use to display i18n messages (describing the type of relationship)
|
||||||
|
*/
|
||||||
|
label: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Options for searching related items
|
||||||
|
*/
|
||||||
relationshipOptions: RelationshipOptions;
|
relationshipOptions: RelationshipOptions;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user