1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

Fix FilePanel and NotificationPanel overscroll issues

This commit is contained in:
Michael Telatynski
2020-09-09 09:50:08 +01:00
parent 644ff56ace
commit 29c2a0ef35
3 changed files with 4 additions and 3 deletions

View File

@@ -60,7 +60,7 @@ class NotificationPanel extends React.Component {
content = <Loader />;
}
return <BaseCard className="mx_NotificationPanel" onClose={this.props.onClose}>
return <BaseCard className="mx_NotificationPanel" onClose={this.props.onClose} withoutScrollContainer>
{ content }
</BaseCard>;
}