From 378c9913ecaa49fca9ff417b0c9d7a92060c4e4d Mon Sep 17 00:00:00 2001 From: hmo Date: Thu, 23 Apr 2026 22:33:15 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=88=86=E7=BB=84=E8=A7=86=E5=9B=BE?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0col-=E5=8C=85=E8=A3=85=E5=99=A8=E4=BB=A5?= =?UTF-8?q?=E6=AD=A3=E7=A1=AE=E6=98=BE=E7=A4=BA=E7=BD=91=E6=A0=BC=E5=B8=83?= =?UTF-8?q?=E5=B1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/templates/goals.html | 2 +- app/templates/problems.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/templates/goals.html b/app/templates/goals.html index 7e7c259..70088d4 100644 --- a/app/templates/goals.html +++ b/app/templates/goals.html @@ -200,7 +200,7 @@ function applyFilters() {
- ${goals.map(g => renderGoalCard(g)).join('')} + ${goals.map(g => `
${renderGoalCard(g)}
`).join('')}
diff --git a/app/templates/problems.html b/app/templates/problems.html index fff97d2..4c7c918 100644 --- a/app/templates/problems.html +++ b/app/templates/problems.html @@ -228,7 +228,7 @@ function renderProblems(problems, groupBy) {
- ${items.map(p => renderProblemCard(p)).join('')} + ${items.map(p => `
${renderProblemCard(p)}
`).join('')}