From cea8fd423ef93b707b4bc59ee0dc0f63b2316e64 Mon Sep 17 00:00:00 2001 From: Keegan George Date: Wed, 18 Jun 2025 12:20:50 -0700 Subject: [PATCH] FIX: unable to scroll AI bot persona selector (#1445) This update fixes a UX issue on the AI bot conversations page where the persona selector dropdown doesn't scroll when there are many items and the viewport is small. No tests as it's tricky to test scrolling. --- .../stylesheets/modules/ai-bot-conversations/common.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/assets/stylesheets/modules/ai-bot-conversations/common.scss b/assets/stylesheets/modules/ai-bot-conversations/common.scss index db1954e0..2b4b6fd8 100644 --- a/assets/stylesheets/modules/ai-bot-conversations/common.scss +++ b/assets/stylesheets/modules/ai-bot-conversations/common.scss @@ -125,6 +125,13 @@ body.has-ai-conversations-sidebar { gap: 0.5em; justify-content: flex-start; + .select-kit-body { + .select-kit-collection { + max-height: 50vh; + overflow-y: auto; + } + } + &__selection-wrapper { display: flex; flex-direction: column;