Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/fix-model-selector-double-scroll-bar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"kilo-code": patch
---

Fix double scroll bar in ModelSelector and KiloProfileSelector by increasing max-height.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export const KiloProfileSelector = ({
vscode.postMessage({ type: "loadApiConfigurationById", text: value })
}
}}
contentClassName="max-h-[300px] overflow-y-auto"
contentClassName="max-h-[400px] overflow-y-auto"
// kilocode_change start - VSC Theme
triggerClassName={cn(
"w-full text-ellipsis overflow-hidden",
Expand Down
2 changes: 1 addition & 1 deletion webview-ui/src/components/kilocode/chat/ModelSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export const ModelSelector = ({
title={t("chat:selectApiConfig")}
options={options}
onChange={onChange}
contentClassName="max-h-[300px] overflow-y-auto"
contentClassName="max-h-[400px] overflow-y-auto"
triggerClassName={cn(
"w-full text-ellipsis overflow-hidden p-0",
"bg-transparent border-transparent hover:bg-transparent hover:border-transparent",
Expand Down
Loading