fix dimensions of the query editor (#5910)

This commit is contained in:
Anthony Dresser
2019-06-06 12:31:12 -07:00
committed by Karl Burtram
parent 68328f65b5
commit 76a84a2cf4
4 changed files with 13 additions and 29 deletions

View File

@@ -297,7 +297,6 @@ export class TabbedPanel extends Disposable {
if (dimension) {
this._currentDimensions = dimension;
this.parent.style.height = dimension.height + 'px';
this.parent.style.height = dimension.width + 'px';
this.header.style.width = dimension.width + 'px';
this.body.style.width = dimension.width + 'px';
const bodyHeight = dimension.height - (this._headerVisible ? this.headersize : 0);