diff --git a/dmp-frontend/src/app/ui/dmp/wizard/dmp-wizard.component.html b/dmp-frontend/src/app/ui/dmp/wizard/dmp-wizard.component.html
index 50f20a3f0..8f1ad460c 100644
--- a/dmp-frontend/src/app/ui/dmp/wizard/dmp-wizard.component.html
+++ b/dmp-frontend/src/app/ui/dmp/wizard/dmp-wizard.component.html
@@ -1,19 +1,23 @@
-
-
-
- {{'DMP-WIZARD.FIRST-STEP.DMP' | translate}}
-
-
-
-
-
-
- {{'DMP-WIZARD.FIRST-STEP.DATASETS' | translate}}
-
-
-
-
-
-
-
+
+
+
+
+
+ {{'DMP-WIZARD.FIRST-STEP.DMP' | translate}}
+
+
+
+
+
+
+ {{'DMP-WIZARD.FIRST-STEP.DATASETS' | translate}}
+
+
+
+
+
+
+
+
+
diff --git a/dmp-frontend/src/app/ui/dmp/wizard/dmp-wizard.component.ts b/dmp-frontend/src/app/ui/dmp/wizard/dmp-wizard.component.ts
index bccef459c..d7fab5e39 100644
--- a/dmp-frontend/src/app/ui/dmp/wizard/dmp-wizard.component.ts
+++ b/dmp-frontend/src/app/ui/dmp/wizard/dmp-wizard.component.ts
@@ -58,6 +58,11 @@ export class DmpWizardComponent extends BaseComponent implements OnInit, IBreadC
this.formGroup.get('label').setValue(this.dmp.label + " New");
this.isClone = true;
}
+ const breadCrumbs = [];
+ breadCrumbs.push({ parentComponentName: null, label: this.language.instant('NAV-BAR.MY-DMPS'), url: "/plans" });
+ breadCrumbs.push({ parentComponentName: 'DmpListingComponent', label: this.dmp.label, url: '/plans/clone/' + this.dmp.id });
+ this.breadCrumbs = Observable.of(breadCrumbs);
+ console.log(this.breadCrumbs);
});
});
}
diff --git a/dmp-frontend/src/app/ui/dmp/wizard/editor/dmp-wizard-editor.component.html b/dmp-frontend/src/app/ui/dmp/wizard/editor/dmp-wizard-editor.component.html
index bc2f4e72b..d9b2f2918 100644
--- a/dmp-frontend/src/app/ui/dmp/wizard/editor/dmp-wizard-editor.component.html
+++ b/dmp-frontend/src/app/ui/dmp/wizard/editor/dmp-wizard-editor.component.html
@@ -2,8 +2,8 @@