From 5acd9f08f11f5629cfa47069fc32ed50e7fd64f0 Mon Sep 17 00:00:00 2001 From: hubian <908234780@qq.com> Date: Tue, 28 Apr 2026 11:04:28 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=8F=91=E7=8E=B0=E6=99=BA=E8=83=BD?= =?UTF-8?q?=E4=BD=93=E6=90=9C=E7=B4=A2=E6=94=AF=E6=8C=81=E5=9F=BA=E7=A1=80?= =?UTF-8?q?=E6=99=BA=E8=83=BD=E4=BD=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- www/app.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/www/app.js b/www/app.js index 38d30bd..4ac8069 100644 --- a/www/app.js +++ b/www/app.js @@ -1324,6 +1324,7 @@ function filterDiscoverAgents(keyword) { if (!keyword) { // 显示所有 showDiscoverSection('hot', systemAgents.filter(a => a.category === 'hot')); + showDiscoverSection('basic', systemAgents.filter(a => a.category === 'basic')); showDiscoverSection('work', systemAgents.filter(a => a.category === 'work')); showDiscoverSection('study', systemAgents.filter(a => a.category === 'study')); showDiscoverSection('life', systemAgents.filter(a => a.category === 'life')); @@ -1338,6 +1339,7 @@ function filterDiscoverAgents(keyword) { // 显示搜索结果 showDiscoverSection('hot', filtered.filter(a => a.category === 'hot')); + showDiscoverSection('basic', filtered.filter(a => a.category === 'basic')); showDiscoverSection('work', filtered.filter(a => a.category === 'work')); showDiscoverSection('study', filtered.filter(a => a.category === 'study')); showDiscoverSection('life', filtered.filter(a => a.category === 'life'));