Skip to content

Commit

Permalink
no width restriction for inline chat (#234975)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken authored Dec 2, 2024
1 parent 9e0297c commit 0da229a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ export class InlineChatZoneWidget extends ZoneWidget {
this._updatePadding();

const info = this.editor.getLayoutInfo();
let width = info.contentWidth - info.verticalScrollbarWidth;
width = Math.min(850, width);
const width = info.contentWidth - info.verticalScrollbarWidth;
// width = Math.min(850, width);

this._dimension = new Dimension(width, heightInPixel);
this.widget.layout(this._dimension);
Expand Down

0 comments on commit 0da229a

Please sign in to comment.