mirror of
https://github.com/coleam00/Archon.git
synced 2025-12-23 18:29:18 -05:00
Fix embedding provider grid to fit all providers in one line
Changed grid-cols-3 to grid-cols-4 for embedding provider selection so all 4 embedding-capable providers (OpenAI, Google, OpenRouter, Ollama) fit on one line, matching the chat provider layout. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1291,7 +1291,7 @@ const manualTestConnection = async (
|
||||
Select {activeSelection === 'chat' ? 'Chat' : 'Embedding'} Provider
|
||||
</label>
|
||||
<div className={`grid gap-3 mb-4 ${
|
||||
activeSelection === 'chat' ? 'grid-cols-6' : 'grid-cols-3'
|
||||
activeSelection === 'chat' ? 'grid-cols-6' : 'grid-cols-4'
|
||||
}`}>
|
||||
{[
|
||||
{ key: 'openai', name: 'OpenAI', logo: '/img/OpenAI.png', color: 'green' },
|
||||
|
||||
Reference in New Issue
Block a user