Style fixes to make eslint happier, hopefully

This commit is contained in:
David Yip
2018-01-18 09:13:07 -06:00
parent aa2bf07281
commit 708ec07e27
14 changed files with 31 additions and 31 deletions

View File

@@ -318,14 +318,14 @@ export default class Status extends ImmutablePureComponent {
media = (
<Bundle fetchComponent={Video} loading={this.renderLoadingVideoPlayer} >
{Component => <Component
{Component => (<Component
preview={video.get('preview_url')}
src={video.get('url')}
sensitive={status.get('sensitive')}
letterbox={settings.getIn(['media', 'letterbox'])}
fullwidth={settings.getIn(['media', 'fullwidth'])}
onOpenVideo={this.handleOpenVideo}
/>}
/>)}
</Bundle>
);
mediaIcon = 'video-camera';