From b2f6f7d2d0c09dcf776c566f5f03892e4c2cce9f Mon Sep 17 00:00:00 2001 From: CN-JS-HuiBai Date: Mon, 6 Apr 2026 15:59:37 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/js/app.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/public/js/app.js b/public/js/app.js index aa45588..1e1e7c9 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -1974,10 +1974,12 @@ if (dom.routeSourceSelect) { const currentVal = dom.routeSourceSelect.value; + const blackboxSources = sources.filter(s => s.type === 'blackbox'); dom.routeSourceSelect.innerHTML = '' + - sources.map(s => ``).join(''); + blackboxSources.map(s => ``).join(''); dom.routeSourceSelect.value = currentVal; } + } async function loadSources() {