remove default checked description for dmp clone, new version dialogs
This commit is contained in:
parent
53dc4c179f
commit
dcf2f89b22
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue