Skip to content

Commit

Permalink
fix: display class name (DEV-4214) (#1864)
Browse files Browse the repository at this point in the history
  • Loading branch information
domsteinbach authored Oct 22, 2024
1 parent c23d39c commit 042a18a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/vre/shared/app-ontology/src/lib/ontology.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ export class OntologyComponent extends ProjectBase implements OnInit, OnDestroy
title: resClassInfo.label,
ontologyId: currentOntology.id,
lastModificationDate: currentOntology.lastModificationDate,
name: resClass.label,
name: this._ontologyService.getNameFromIri(resClassInfo.iri),
comments: resClass.comments as MultiLanguages,
labels: resClass.labels as MultiLanguages,
})
Expand Down

0 comments on commit 042a18a

Please sign in to comment.