remove default checked description for dmp clone, new version dialogs

This commit is contained in:
amentis 2024-05-01 18:10:49 +03:00
parent 53dc4c179f
commit dcf2f89b22
2 changed files with 0 additions and 2 deletions

View File

@ -21,7 +21,6 @@ export class DmpCloneDialogEditorModel implements CloneDmpPersist {
this.id = item.id;
this.label = item.label + " New";
this.description = item.description;
if (item.descriptions) { this.descriptions = item.descriptions.map(x => x.id); }
}
return this;
}

View File

@ -24,7 +24,6 @@ export class DmpNewVersionDialogEditorModel implements NewVersionDmpPersist {
this.label = item.label;
this.description = item.description;
this.blueprintId = item.blueprint.id;
if (item.descriptions) { this.descriptions = item.descriptions.map(x => x.id); }
this.hash= item.hash;
}
return this;