Skip to content

Commit

Permalink
fix(ontology): Bug fix in ontology form (#417)
Browse files Browse the repository at this point in the history
  • Loading branch information
kilchenmann committed Apr 14, 2021
1 parent c29150c commit 96dc804
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/main/dialog/dialog.component.html
Expand Up @@ -221,14 +221,14 @@
<!-- Ontology editor: create new ontology -->
<div *ngSwitchCase="'createOntology'">
<app-dialog-header [title]="data.title" [subtitle]="'Create new'"></app-dialog-header>
<app-ontology-form [projectcode]="data.project" (closeDialog)="dialogRef.close($event)"
<app-ontology-form [projectCode]="data.project" (closeDialog)="dialogRef.close($event)"
[existingOntologyNames]="data.existing"></app-ontology-form>
</div>

<div *ngSwitchCase="'editOntology'">
<app-dialog-header [title]="data.title" [subtitle]="'Customize data model'" (close)="dialogRef.close()">
</app-dialog-header>
<app-ontology-form [iri]="data.id" [projectcode]="data.project" (closeDialog)="dialogRef.close($event)"
<app-ontology-form [iri]="data.id" [projectCode]="data.project" (closeDialog)="dialogRef.close($event)"
[existingOntologyNames]="data.existing"></app-ontology-form>
</div>

Expand Down

0 comments on commit 96dc804

Please sign in to comment.