From d1d7d14f77733be2e0938488752e94d65eedc6aa Mon Sep 17 00:00:00 2001 From: ThibG Date: Mon, 18 Feb 2019 00:10:21 +0100 Subject: [PATCH] Fix video player width not being updated to fit container width (#10069) --- app/javascript/mastodon/features/video/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/app/javascript/mastodon/features/video/index.js b/app/javascript/mastodon/features/video/index.js index 894fe78d9..55dd249e1 100644 --- a/app/javascript/mastodon/features/video/index.js +++ b/app/javascript/mastodon/features/video/index.js @@ -347,7 +347,6 @@ class Video extends React.PureComponent { width = containerWidth; height = containerWidth / (16/9); - playerStyle.width = width; playerStyle.height = height; }