diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b6aa8859..e5c7dcda9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,7 @@ Web UI version numbers should always match the corresponding version of LBRY App * ### Fixed - * + * Error modals now display full screen properly * ### Deprecated diff --git a/ui/js/app.js b/ui/js/app.js index 85f8891a6..bdef281a0 100644 --- a/ui/js/app.js +++ b/ui/js/app.js @@ -303,7 +303,7 @@ var App = React.createClass({

Error

diff --git a/ui/js/component/modal.js b/ui/js/component/modal.js index dbb8ff646..27250a8a3 100644 --- a/ui/js/component/modal.js +++ b/ui/js/component/modal.js @@ -28,7 +28,7 @@ export const Modal = React.createClass({ return ( + overlayClassName={![null, undefined, ""].includes(this.props.overlayClassName) ? this.props.overlayClassName : 'modal-overlay'}>
{this.props.children}