File tree 3 files changed +11
-1
lines changed
boxel-ui/addon/src/components/resizable-panel-group
host/app/components/operator-mode
3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ export default class ResizablePanelGroup extends Component<Signature> {
161
161
}
162
162
163
163
return htmlSafe (
164
- ` flex: 0; flex-grow: ${flexGrow }; flex-shrink: 1; overflow: hidden; pointer-events: ${
164
+ ` flex: 0; flex-grow: ${flexGrow }; flex-shrink: 1; pointer-events: ${
165
165
this .dragState !== null ? ' none' : undefined
166
166
}; ` ,
167
167
);
Original file line number Diff line number Diff line change @@ -49,6 +49,11 @@ export default class Panel extends Component<Signature> {
49
49
>
50
50
{{ yield }}
51
51
</div >
52
+ <style scoped >
53
+ .boxel-panel {
54
+ overflow : hidden ;
55
+ }
56
+ < /style >
52
57
</template >
53
58
54
59
element! : HTMLDivElement ;
Original file line number Diff line number Diff line change @@ -327,6 +327,7 @@ export default class SubmodeLayout extends Component<Signature> {
327
327
)
328
328
}}
329
329
<ResizablePanel
330
+ class =' ai-assistant-resizable-panel'
330
331
@ defaultSize ={{this .aiPanelWidths.defaultWidth }}
331
332
@ minSize ={{this .aiPanelWidths.minWidth }}
332
333
@ collapsible ={{ false }}
@@ -368,6 +369,10 @@ export default class SubmodeLayout extends Component<Signature> {
368
369
width : 100% ;
369
370
}
370
371
372
+ .ai-assistant-resizable-panel {
373
+ overflow : initial ;
374
+ }
375
+
371
376
.main-panel {
372
377
position : relative ;
373
378
}
You can’t perform that action at this time.
0 commit comments