1
0
mirror of https://github.com/ascribe/onion.git synced 2024-12-22 17:33:14 +01:00

Small warnings fix for bool props

This commit is contained in:
Brett Sun 2016-02-09 12:07:23 +01:00
parent e17347a98c
commit 9e0efd5140

View File

@ -95,19 +95,19 @@ let Edition = React.createClass({
<CollapsibleParagraph <CollapsibleParagraph
title={getLangText('Provenance/Ownership History')} title={getLangText('Provenance/Ownership History')}
show={edition.ownership_history && edition.ownership_history.length}> show={!!(edition.ownership_history && edition.ownership_history.length)}>
<HistoryIterator history={edition.ownership_history} /> <HistoryIterator history={edition.ownership_history} />
</CollapsibleParagraph> </CollapsibleParagraph>
<CollapsibleParagraph <CollapsibleParagraph
title={getLangText('Consignment History')} title={getLangText('Consignment History')}
show={edition.consign_history && edition.consign_history.length > 0}> show={!!(edition.consign_history && edition.consign_history.length)}>
<HistoryIterator history={edition.consign_history} /> <HistoryIterator history={edition.consign_history} />
</CollapsibleParagraph> </CollapsibleParagraph>
<CollapsibleParagraph <CollapsibleParagraph
title={getLangText('Loan History')} title={getLangText('Loan History')}
show={edition.loan_history && edition.loan_history.length > 0}> show={!!(edition.loan_history && edition.loan_history.length)}>
<HistoryIterator history={edition.loan_history} /> <HistoryIterator history={edition.loan_history} />
</CollapsibleParagraph> </CollapsibleParagraph>
@ -129,14 +129,14 @@ let Edition = React.createClass({
defaultValue={edition.public_note ? edition.public_note : null} defaultValue={edition.public_note ? edition.public_note : null}
placeholder={getLangText('Enter your comments ...')} placeholder={getLangText('Enter your comments ...')}
editable={!!edition.acl.acl_edit} editable={!!edition.acl.acl_edit}
show={!!edition.public_note || !!edition.acl.acl_edit} show={!!(edition.public_note && edition.acl.acl_edit)}
successMessage={getLangText('Public edition note saved')} successMessage={getLangText('Public edition note saved')}
url={ApiUrls.note_public_edition} url={ApiUrls.note_public_edition}
currentUser={currentUser} /> currentUser={currentUser} />
</CollapsibleParagraph> </CollapsibleParagraph>
<CollapsibleParagraph <CollapsibleParagraph
title={getLangText('Further Details')} title={getLangText('Further Details')}
show={edition.acl.acl_edit || Object.keys(edition.extra_data).length || edition.other_data.length}> show={!!(edition.acl.acl_edit || Object.keys(edition.extra_data).length || edition.other_data.length)}>
<FurtherDetailsType <FurtherDetailsType
editable={edition.acl.acl_edit} editable={edition.acl.acl_edit}
pieceId={edition.parent} pieceId={edition.parent}