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

View File

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