Skip to content

Commit

Permalink
Merge pull request #136 from glucoseinc/fix-issue
Browse files Browse the repository at this point in the history
Fix issue
  • Loading branch information
sasaujp authored Mar 17, 2021
2 parents 30043be + 0781749 commit 9892a68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/src/ts/visualizer/components/Detail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const Detail: React.FC<DetailProps> = (props) => {
const domainClassDetail = classes[domain || '']
const rangeClassDetail = classes[range || '']
const canDrawTriple = (node: ClassDetail | undefined) =>
node?.subClassOf?.length === 1
!node?.subClassOf || node?.subClassOf?.length === 1

return (
<>
Expand Down

0 comments on commit 9892a68

Please sign in to comment.