diff --git a/src/components/AIConfigPanel.tsx b/src/components/AIConfigPanel.tsx index 859cfde..42a6d6f 100644 --- a/src/components/AIConfigPanel.tsx +++ b/src/components/AIConfigPanel.tsx @@ -136,7 +136,7 @@ export function AIConfigPanel({ value={title} onChange={(e) => onTitleChange(e.target.value)} maxLength={50} - className="text-base font-semibold text-gray-900 dark:text-gray-100 bg-transparent border-b border-gray-300 dark:border-gray-600 focus:border-indigo-500 focus:outline-none w-full" + className="text-base font-semibold text-gray-900 dark:text-gray-100 bg-transparent border-b border-gray-300 dark:border-white/10 focus:border-indigo-500 focus:outline-none w-full" placeholder="Bot name" /> @@ -193,7 +193,7 @@ export function AIConfigPanel({ {showVersions && (
{versions.length === 0 ? (

@@ -202,7 +202,7 @@ export function AIConfigPanel({ ) : (

{versions.map((v) => ( -
+

{formatDate(v.created_at)}

{v.content}

@@ -223,13 +223,13 @@ export function AIConfigPanel({