@@ -214,7 +214,7 @@ class GridLayout extends React.Component<GridLayoutProps, GridLayoutState> {
214
214
*/
215
215
containerHeight ( ) :string {
216
216
const { margin, rowHeight, fixedRowCount, isCanvas} = this . props as Required < GridLayoutProps > ;
217
- const { extraHeight , emptyRows} = this . props ;
217
+ const { emptyRows} = this . props ;
218
218
const positionParams = genPositionParams ( this . props ) ;
219
219
const { containerPadding} = positionParams ;
220
220
const layout = this . getUILayout ( undefined , true ) ;
@@ -227,9 +227,7 @@ class GridLayout extends React.Component<GridLayoutProps, GridLayoutState> {
227
227
nbRow * rowHeight + ( nbRow - 1 ) * margin [ 1 ] + containerPadding [ 1 ] * 2
228
228
) ;
229
229
// log.debug("layout: containerHeigh=", containerHeight, " minHeight: ", this.props.minHeight);
230
- const height = extraHeight
231
- ?`calc(${ containerHeight } px +${ extraHeight } )`
232
- :containerHeight + "px" ;
230
+ const height = `${ containerHeight } px` ;
233
231
// log.log( "containerHeight. nbRow: ", nbRow, " containerPadding: ", containerPadding[1], " containerHeight: ", containerHeight, " height: ", height);
234
232
return height ;
235
233
}