diff --git a/.changeset/fix-org-selector-overlap.md b/.changeset/fix-org-selector-overlap.md new file mode 100644 index 00000000000..42c018f0363 --- /dev/null +++ b/.changeset/fix-org-selector-overlap.md @@ -0,0 +1,5 @@ +--- +"kilo-code": patch +--- + +Fixed organization selector overlapping with "Recent" text in chat pane header diff --git a/webview-ui/src/components/chat/ChatView.tsx b/webview-ui/src/components/chat/ChatView.tsx index d6a99803782..ee52fb019e2 100644 --- a/webview-ui/src/components/chat/ChatView.tsx +++ b/webview-ui/src/components/chat/ChatView.tsx @@ -1692,23 +1692,21 @@ const ChatViewComponent: React.ForwardRefRenderFunction {/* Moved Task Bar Header Here */} - {taskHistoryFullLength !== 0 && ( -
-
- {taskHistoryFullLength < 10 && ( - {t("history:recentTasks")} - )} - +
+ {taskHistoryFullLength !== 0 && ( +
+
+ {taskHistoryFullLength < 10 && ( + {t("history:recentTasks")} + )} + +
-
- )} - {!showTelemetryBanner && ( -
- -
- )} + )} + {!showTelemetryBanner && } +
{/* kilocode_change start: changed the classes to support notifications */}
{/* kilocode_change end */}