dmp editor > initialize next step when dmp is not new

This commit is contained in:
Sofia Papacharalampous 2024-04-08 14:58:08 +03:00
parent 060bfbed20
commit 658b5d948d
1 changed files with 2 additions and 0 deletions

View File

@ -157,6 +157,8 @@ export class DmpEditorComponent extends BaseEditor<DmpEditorModel, Dmp> implemen
ngOnInit(): void {
this.matomoService.trackPageView('DMP Editor');
super.ngOnInit();
if (this.isNew === false) this.nextStep();
}
getItem(itemId: Guid, successFunction: (item: Dmp) => void) {