Fix WebUI crash in edge case when media display size causes scroll

Fixes #1406
master
Thibaut Girka 2020-08-17 13:53:52 +02:00 committed by ThibG
parent e5dbdebc31
commit d4b65193c7
1 changed files with 2 additions and 4 deletions

View File

@ -287,10 +287,8 @@ class MediaGallery extends React.PureComponent {
} }
componentDidUpdate (prevProps) { componentDidUpdate (prevProps) {
if (this.node && this.node.offsetWidth && this.node.offsetWidth != this.state.width) { if (this.node) {
this.setState({ this.handleResize();
width: this.node.offsetWidth,
});
} }
} }