Skip to content

Commit

Permalink
fix(ontology): send modified label (DEV-221) (#589)
Browse files Browse the repository at this point in the history
  • Loading branch information
kilchenmann committed Nov 12, 2021
1 parent b497d0e commit 9d7ffea
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -250,7 +250,7 @@ export class OntologyFormComponent implements OnInit {
// create mode

const ontologyData = new CreateOntology();
ontologyData.label = this.project.shortname + ': ' + (this.ontologyLabel ? this.ontologyLabel : this.ontologyForm.controls['name'].value);
ontologyData.label = this.project.shortname + ': ' + this.ontologyForm.controls['label'].value;
ontologyData.name = this.ontologyForm.controls['name'].value;
ontologyData.comment = this.ontologyForm.controls['comment'].value;
ontologyData.attachedToProject = this.project.id;
Expand Down

0 comments on commit 9d7ffea

Please sign in to comment.