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('')}