fix bug on dmp editor > on description delete
This commit is contained in:
parent
64698bbe21
commit
eee9d65ee8
|
@ -258,7 +258,10 @@ export class DmpEditorComponent extends BaseEditor<DmpEditorModel, Dmp> implemen
|
|||
}
|
||||
|
||||
refreshData(): void {
|
||||
this.getItem(this.editorModel.id, (data: Dmp) => this.prepareForm(data));
|
||||
this.getItem(this.editorModel.id, (data: Dmp) => {
|
||||
this.prepareForm(data)
|
||||
if (this.isNew === false) this.nextStep();
|
||||
});
|
||||
}
|
||||
|
||||
refreshOnNavigateToData(id?: Guid): void {
|
||||
|
|
Loading…
Reference in New Issue