fix: prevent editor column overflow
This commit is contained in:
@@ -313,9 +313,7 @@ class PanelResizerCtrl implements PanelResizerScope {
|
||||
}
|
||||
if (Math.round(width + this.lastLeft) === Math.round(parentRect.width)) {
|
||||
this.panel.style.width = `calc(100% - ${this.lastLeft}px)`;
|
||||
this.panel.style.flexBasis = `calc(100% - ${this.lastLeft}px)`;
|
||||
} else {
|
||||
this.panel.style.flexBasis = width + 'px';
|
||||
this.panel.style.width = width + 'px';
|
||||
}
|
||||
this.lastWidth = width;
|
||||
|
||||
Reference in New Issue
Block a user