fix stupid double-spacing issue

This commit is contained in:
Matthew Hodgson 2016-09-05 11:48:22 +01:00
parent c3de035964
commit 820cd579d8

View file

@ -93,8 +93,9 @@ module.exports = React.createClass({
} }
else { else {
joinText = (<span> joinText = (<span>
Join as <a onClick={(event)=>{ this.onConferenceNotificationClick(event, 'voice')}} href="#">voice</a>&nbsp; Join as <a onClick={(event)=>{ this.onConferenceNotificationClick(event, 'voice')}}
or <a onClick={(event)=>{ this.onConferenceNotificationClick(event, 'video') }} href="#">video</a>. href="#">voice</a> or <a onClick={(event)=>{ this.onConferenceNotificationClick(event, 'video') }}
href="#">video</a>.
</span>); </span>);
} }