Skip to content

Commit

Permalink
Fix build break from wrong param passed to <ConceptCoverage> (openui#88)
Browse files Browse the repository at this point in the history
* Remove openUIName causing build breaks for concept only present in semantic

* Add back the openUIName, fix in concepts.js by passing uniqueName instead of openUIName
  • Loading branch information
dandclark authored May 8, 2020
1 parent b556f7e commit 085530f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions research/src/components/concepts.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ const Concepts = ({ component }) => {
<ConceptCoverage
component={component}
openUIConceptName={conceptOpenUIName}
conceptName={conceptOpenUIName}
conceptName={uniqueNames[0]}
/>
)}
</h3>
{hasOtherNames && (
<div style={{ color: '#777', lineHeight: 1, marginBottom: '.5em' }}>
{uniqueNames.map(otherName => (
{uniqueNames.map((otherName) => (
<div key={otherName}>
<ConceptCoverage
component={component}
Expand Down

0 comments on commit 085530f

Please sign in to comment.