From 62c8a07b88e463701c4f8e77e8bfd0f3d40f7b5c Mon Sep 17 00:00:00 2001 From: root Date: Mon, 10 Aug 2026 10:37:57 +0800 Subject: [PATCH] fix(ui): sources page model tags wrap 4 per row (same grid as status page) --- internal/gateway/ui/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/gateway/ui/index.html b/internal/gateway/ui/index.html index d94bc84..53d5f50 100644 --- a/internal/gateway/ui/index.html +++ b/internal/gateway/ui/index.html @@ -1003,7 +1003,7 @@ function removeChatImg(i) { chatImages.splice(i, 1); renderChatImgs(); } async function renderSources() { const j = await api('/api/sources'); const rows = j.sources.map(s => `${esc(s.name)}${esc(s.base_url)}${esc(s.adapter)} - ${s.models.map(m => `${esc(m.id)}`).join('')} +
${s.models.map(m => `${esc(m.id)}`).join('')}
`).join(''); $('#tab-sources').innerHTML = `