make Modal always scrollable (#3667)

This commit is contained in:
Jannis Redmann
2016-11-29 13:50:22 +01:00
committed by Jaco Greeff
parent 5e8f6f271d
commit e667d33778
7 changed files with 5 additions and 9 deletions

View File

@@ -41,7 +41,6 @@ class Modal extends Component {
compact: PropTypes.bool,
current: PropTypes.number,
waiting: PropTypes.array,
scroll: PropTypes.bool,
steps: PropTypes.array,
title: PropTypes.oneOfType([
PropTypes.node, PropTypes.string
@@ -52,7 +51,7 @@ class Modal extends Component {
render () {
const { muiTheme } = this.context;
const { actions, busy, className, current, children, compact, scroll, steps, waiting, title, visible, settings } = this.props;
const { actions, busy, className, current, children, compact, steps, waiting, title, visible, settings } = this.props;
const contentStyle = muiTheme.parity.getBackgroundStyle(null, settings.backgroundSeed);
const header = (
<Title
@@ -70,7 +69,7 @@ class Modal extends Component {
actions={ actions }
actionsContainerStyle={ ACTIONS_STYLE }
autoDetectWindowHeight={ false }
autoScrollBodyContent={ !!scroll }
autoScrollBodyContent
actionsContainerClassName={ styles.actions }
bodyClassName={ styles.body }
contentClassName={ styles.content }