fix(common): restore scrolling on response panel (#5783)

This commit is contained in:
Nivedin 2026-01-20 19:26:01 +05:30 committed by GitHub
parent 27b817f627
commit 69c7c2d9ad
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,7 +12,7 @@
<Pane <Pane
:size="SIDEBAR && hasSidebar ? PANE_MAIN_SIZE : 100" :size="SIDEBAR && hasSidebar ? PANE_MAIN_SIZE : 100"
min-size="65" min-size="65"
class="flex flex-col !overflow-hidden" class="flex flex-col overflow-hidden"
> >
<Splitpanes <Splitpanes
class="smart-splitter" class="smart-splitter"
@ -21,7 +21,7 @@
> >
<Pane <Pane
:size="PANE_MAIN_TOP_SIZE" :size="PANE_MAIN_TOP_SIZE"
class="flex flex-col !overflow-auto" class="flex flex-col overflow-auto"
:min-size="isEmbed ? 12 : 25" :min-size="isEmbed ? 12 : 25"
> >
<slot name="primary" /> <slot name="primary" />
@ -29,7 +29,7 @@
<Pane <Pane
v-if="hasSecondary" v-if="hasSecondary"
:size="PANE_MAIN_BOTTOM_SIZE" :size="PANE_MAIN_BOTTOM_SIZE"
class="flex flex-col !overflow-hidden" class="flex flex-col overflow-auto"
min-size="25" min-size="25"
> >
<slot name="secondary" /> <slot name="secondary" />