Remove hyphen from empty data view

[Closes #95]
This commit is contained in:
Tom Russell 2018-10-25 11:52:11 +01:00
parent 80222a07e4
commit ca6992c8be

View File

@ -97,7 +97,7 @@ const DataEntry = (props) => (
{ props.title }
{ props.tooltip? <Tooltip text={ props.tooltip } /> : null }
</dt>
<dd>{props.value ? props.value : '-'}</dd>
<dd>{props.value ? props.value : '\u00A0'}</dd>
</Fragment>
);