Skip to content
Open
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
6 changes: 3 additions & 3 deletions frontend/src/components/chat/ChatPanel.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2026 Rob Macrae. All rights reserved.
// SPDX-License-Identifier: LicenseRef-Proprietary
// REVISION: chat-v5-markdown
// REVISION: chat-input-focus-v1-remove-blue-outline

"use client";

Expand All @@ -11,7 +11,7 @@
* Messages appear in a popover above the input.
*/

const CHAT_PANEL_REVISION = "chat-v5-markdown";
const CHAT_PANEL_REVISION = "chat-input-focus-v1-remove-blue-outline";
console.log(`[ChatPanel] REVISION: ${CHAT_PANEL_REVISION} loaded at ${new Date().toISOString()}`);

import * as React from "react";
Expand Down Expand Up @@ -283,7 +283,7 @@ export function ChatPanel({ dashboardId, className, onUICommand }: ChatPanelProp
placeholder="Ask Orcabot..."
disabled={isStreaming}
className={cn(
"flex-1 bg-transparent border-0 outline-none",
"flex-1 bg-transparent border-0 outline-none focus-visible:outline-none",
"text-xs placeholder:text-muted-foreground",
"disabled:opacity-50"
)}
Expand Down