Skip to content

Commit

Permalink
fix(playground): allow scroll in playground prompts (#5320)
Browse files Browse the repository at this point in the history
Co-authored-by: Anthony Powell <apowell@arize.com>
  • Loading branch information
axiomofjoy and cephalization authored Nov 11, 2024
1 parent 76f0759 commit 04af112
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion app/src/pages/playground/Playground.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ function AddPromptButton() {
const playgroundPromptPanelContentCSS = css`
display: flex;
flex-direction: column;
height: 100%;
overflow: hidden;
& > .ac-accordion {
display: flex;
Expand All @@ -155,8 +156,12 @@ const playgroundPromptPanelContentCSS = css`
height: 100%;
display: flex;
flex-direction: column;
overflow: hidden;
overflow-x: hidden;
overflow-y: auto;
flex: 1 1 auto;
& > [role="button"] {
flex: unset;
}
.ac-accordion-itemContent {
height: 100%;
overflow: hidden;
Expand Down

0 comments on commit 04af112

Please sign in to comment.