diff --git a/src/app/adf-schema/df-relationship-details/df-relationship-details.component.ts b/src/app/adf-schema/df-relationship-details/df-relationship-details.component.ts index f640e390..eed528ba 100644 --- a/src/app/adf-schema/df-relationship-details/df-relationship-details.component.ts +++ b/src/app/adf-schema/df-relationship-details/df-relationship-details.component.ts @@ -119,7 +119,11 @@ export class DfRelationshipDetailsComponent implements OnInit { }); this.serviceOptions = data['services'].resource.map((item: Service) => { - return { label: item.label, value: item.id, name: item.name }; + return { + label: this.type === 'edit' ? item.type : item.label, + value: item.id, + name: item.name, + }; }); if (this.type === 'edit') {