Merge pull request #267 from esteemapp/bugfix/profile

Fixed #190
This commit is contained in:
Feruz M 2018-12-19 12:09:22 +02:00 committed by GitHub
commit b3f39dbab3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,9 +79,9 @@ class ProfileSummaryView extends Component {
return ( return (
<Fragment> <Fragment>
<View style={[isColumn ? styles.textWithIconWrapperColumn : styles.textWithIconWrapper]}> <View style={[isColumn ? styles.textWithIconWrapperColumn : styles.textWithIconWrapper]}>
{location && <TextWithIcon text={location} iconName="md-navigate" />} {!!location && <TextWithIcon text={location} iconName="md-navigate" />}
{link && <TextWithIcon isClickable text={link} iconName="md-globe" />} {!!link && <TextWithIcon isClickable text={link} iconName="md-globe" />}
{date && <TextWithIcon text={date} iconName="md-calendar" />} {!!date && <TextWithIcon text={date} iconName="md-calendar" />}
</View> </View>
<View /> <View />
<Image <Image