Merge pull request #105 from marshmalien/wrap-long-detail-descriptions

Wrap Org Details description field
This commit is contained in:
Marliana Lara 2019-02-11 12:58:28 -05:00 committed by GitHub
commit cdc8b372f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,8 @@ const detailLabelStyle = {
};
const detailValueStyle = {
lineHeight: '24px'
lineHeight: '24px',
wordBreak: 'break-all'
};
const Detail = ({ label, value }) => {