This commit is contained in:
Mustafa Buyukcelebi 2018-12-19 10:30:50 +03:00
parent 6bbe6fd720
commit 20adb8d1d9

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