From 35c3aaa9d88203ac3c63824e7e519db940d9a400 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Sun, 30 Aug 2020 18:38:50 -0500 Subject: [PATCH] Mostly fix FireFox scrolling issues (hopefully), fixes #372 --- app/soapbox/components/status.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/soapbox/components/status.js b/app/soapbox/components/status.js index d94de8fc9..4e76a622d 100644 --- a/app/soapbox/components/status.js +++ b/app/soapbox/components/status.js @@ -192,15 +192,15 @@ class Status extends ImmutablePureComponent { }; renderLoadingMediaGallery() { - return
; + return
; } renderLoadingVideoPlayer() { - return
; + return
; } renderLoadingAudioPlayer() { - return
; + return
; } handleOpenVideo = (media, startTime) => { @@ -373,7 +373,7 @@ class Status extends ImmutablePureComponent { alt={video.get('description')} aspectRatio={video.getIn(['meta', 'small', 'aspect'])} width={this.props.cachedMediaWidth} - height={110} + height={285} inline sensitive={status.get('sensitive')} onOpenVideo={this.handleOpenVideo} @@ -409,7 +409,7 @@ class Status extends ImmutablePureComponent {