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:
leex279
2025-11-08 23:28:30 +01:00
parent 4cfa872f7b
commit f32f0c36dd

View File

@@ -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' },