Update models.js [ci skip]

This commit is contained in:
Ines Montani 2019-09-30 12:01:09 +02:00
parent 9cbaf9b965
commit 71bd040834

View File

@ -239,7 +239,7 @@ const Model = ({ name, langId, langName, baseUrl, repo, compatibility, hasExampl
)}
</tbody>
</Table>
<Grid cols={2} gutterBottom={hasInteractiveCode || labels}>
<Grid cols={2} gutterBottom={hasInteractiveCode || !!labels}>
{accuracy &&
accuracy.map(({ label, items }, i) =>
!items ? null : (
@ -293,11 +293,12 @@ const Model = ({ name, langId, langName, baseUrl, repo, compatibility, hasExampl
.
</p>
<Table fixed>
<tbody>
{Object.keys(labels).map(pipe => {
const labelNames = labels[pipe] || []
const help = LABEL_SCHEME_META[pipe]
return (
<Tr key={pipe} evenodd={false}>
<Tr key={pipe} evenodd={false} key={pipe}>
<Td style={{ width: '20%' }}>
<Label>
{pipe} {help && <Help>{help}</Help>}
@ -316,6 +317,7 @@ const Model = ({ name, langId, langName, baseUrl, repo, compatibility, hasExampl
</Tr>
)
})}
</tbody>
</Table>
</Accordion>
)}