Skip to content

Commit 7d21233

Browse files
authored
fix(common): Resizer Service should only resize grid not its container (#833)
1 parent db34213 commit 7d21233

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

packages/common/src/services/resizer.service.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -343,10 +343,8 @@ export class ResizerService {
343343
// apply these new height/width to the datagrid
344344
if (!this.gridOptions.autoHeight) {
345345
this._gridDomElm.height(newHeight as string);
346-
this._gridContainerElm.height(newHeight);
347346
}
348347
this._gridDomElm.width(newWidth as string);
349-
this._gridContainerElm.width(newWidth as string);
350348

351349
// resize the slickgrid canvas on all browser except some IE versions
352350
// exclude all IE below IE11

0 commit comments

Comments
 (0)