From 56607879eee1c3d1d8c383cd9fe61e69bb3746a8 Mon Sep 17 00:00:00 2001 From: tcpsyn Date: Sat, 21 Mar 2026 02:42:53 -0600 Subject: [PATCH] =?UTF-8?q?Fix=20style-matched=20dropdowns=20=E2=80=94=20p?= =?UTF-8?q?opulate=20from=20full=20model=20list,=20not=20just=20pool?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/js/app.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/js/app.js b/frontend/js/app.js index 803fe84..4a28fdf 100644 --- a/frontend/js/app.js +++ b/frontend/js/app.js @@ -1397,7 +1397,8 @@ function updateCallerModelUI() { const sel = document.createElement('select'); sel.className = 'cm-style-select'; sel.dataset.style = style; - for (const m of callerModelSettings.pool) { + const models = window._openrouterModels || callerModelSettings.pool; + for (const m of models) { const opt = document.createElement('option'); opt.value = m; opt.textContent = m.split('/').pop();