Fix px typing issue.

pull/10616/head
Hunter Trujillo 2017-04-07 10:57:22 -06:00
parent 4ad63d0630
commit e4aa9c6070
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ const ResizeContainer = React.createClass({
bottomHeightPixels,
} = this.state
const top = React.cloneElement(this.props.children[0], {height: topHeight, heightPixels: topHeightPixels})
const bottom = React.cloneElement(this.props.children[1], {height: bottomHeightPixels})
const bottom = React.cloneElement(this.props.children[1], {height: `${bottomHeightPixels}px`})
return (
<div className="resize-container page-contents" onMouseLeave={this.handleMouseLeave} onMouseUp={this.handleStopDrag} onMouseMove={this.handleDrag} ref="resizeContainer" >
{top}