-
+
diff --git a/dmp-frontend/src/app/ui/dmp/overview/dmp-overview.component.ts b/dmp-frontend/src/app/ui/dmp/overview/dmp-overview.component.ts index be7acf9b8..95e6f0758 100644 --- a/dmp-frontend/src/app/ui/dmp/overview/dmp-overview.component.ts +++ b/dmp-frontend/src/app/ui/dmp/overview/dmp-overview.component.ts @@ -126,7 +126,7 @@ export class DmpOverviewComponent extends BaseComponent implements OnInit { this.dmpService.getSingle(itemId, this.lookupFields()) .pipe(takeUntil(this._destroyed)) .subscribe(data => { - this.breadcrumbService.addIdResolvedValue(data.id.toString(), data.label); + this.breadcrumbService.addIdResolvedValue(data.id?.toString(), data.label); this.dmp = data; this.dmp.dmpUsers = data.dmpUsers.filter(x => x.isActive === IsActive.Active); @@ -169,7 +169,7 @@ export class DmpOverviewComponent extends BaseComponent implements OnInit { this.dmpService.getPublicSingle(publicId, this.lookupFields()) .pipe(takeUntil(this._destroyed)) .subscribe(data => { - this.breadcrumbService.addIdResolvedValue(`${data.id}`, data.label); + this.breadcrumbService.addIdResolvedValue(data.id?.toString(), data.label); this.dmp = data; this.researchers = this.referenceService.getReferencesForTypes(this.dmp?.dmpReferences, [this.referenceTypeService.getResearcherReferenceType()]); diff --git a/dmp-frontend/src/notification-service/ui/admin/notification-template/editor/notification-template-editor.component.html b/dmp-frontend/src/notification-service/ui/admin/notification-template/editor/notification-template-editor.component.html index f82166668..b946e6cd9 100644 --- a/dmp-frontend/src/notification-service/ui/admin/notification-template/editor/notification-template-editor.component.html +++ b/dmp-frontend/src/notification-service/ui/admin/notification-template/editor/notification-template-editor.component.html @@ -3,7 +3,6 @@
-

{{'NOTIFICATION-SERVICE.NOTIFICATION-TEMPLATE-EDITOR.NEW' | translate}}

diff --git a/dmp-frontend/src/notification-service/ui/admin/notification-template/listing/notification-template-listing.component.html b/dmp-frontend/src/notification-service/ui/admin/notification-template/listing/notification-template-listing.component.html index fdd880880..86e35c798 100644 --- a/dmp-frontend/src/notification-service/ui/admin/notification-template/listing/notification-template-listing.component.html +++ b/dmp-frontend/src/notification-service/ui/admin/notification-template/listing/notification-template-listing.component.html @@ -4,9 +4,7 @@
-

{{'NOTIFICATION-SERVICE.NOTIFICATION-TEMPLATE-LISTING.TITLE' | translate}}

-