Return empty string (not null) if user doesn't like building

Towards #364
This commit is contained in:
Tom Russell 2019-08-12 21:59:24 +01:00
parent 6cfd12e638
commit 7d7c22ba98

View File

@ -266,7 +266,7 @@ const LikeDataEntry: React.SFC<any> = (props) => { // TODO: remove any
} }
</dd> </dd>
{ {
(props.user_building_like)? <dd>&hellip;including you!</dd> : null (props.user_building_like)? <dd>&hellip;including you!</dd> : ''
} }
</Fragment> </Fragment>
); );