frontend changes

This commit is contained in:
2026-03-25 01:41:40 -06:00
parent b4bcb8f3f2
commit 00ee076baa
6 changed files with 12 additions and 18 deletions

View File

@ -90,7 +90,7 @@ export default function SettingsPanel() {
<select
value={providers.ollama.model}
onChange={(e) => setProviderConfig('ollama', { model: e.target.value })}
className="w-full px-3 py-2 bg-editor-surface border border-editor-border rounded-lg text-xs text-editor-text focus:outline-none focus:border-editor-accent"
className="w-full px-3 py-2 bg-editor-surface border border-editor-border rounded-lg text-xs text-white focus:outline-none focus:border-editor-accent"
>
{ollamaModels.map((m) => (
<option key={m} value={m}>{m}</option>