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.id = item.id;
|
||||||
this.label = item.label + " New";
|
this.label = item.label + " New";
|
||||||
this.description = item.description;
|
this.description = item.description;
|
||||||
if (item.descriptions) { this.descriptions = item.descriptions.map(x => x.id); }
|
|
||||||
}
|
}
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,7 +24,6 @@ export class DmpNewVersionDialogEditorModel implements NewVersionDmpPersist {
|
||||||
this.label = item.label;
|
this.label = item.label;
|
||||||
this.description = item.description;
|
this.description = item.description;
|
||||||
this.blueprintId = item.blueprint.id;
|
this.blueprintId = item.blueprint.id;
|
||||||
if (item.descriptions) { this.descriptions = item.descriptions.map(x => x.id); }
|
|
||||||
this.hash= item.hash;
|
this.hash= item.hash;
|
||||||
}
|
}
|
||||||
return this;
|
return this;
|
||||||
|
|
Loading…
Reference in New Issue