From ed1072ce0562affc4249b7989d052edac1a2fcd6 Mon Sep 17 00:00:00 2001 From: svemagie <869694+svemagie@users.noreply.github.com> Date: Mon, 23 Mar 2026 10:00:17 +0100 Subject: [PATCH] fix(design): been on where page --- changelog.njk | 8 ++++---- where.njk | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/changelog.njk b/changelog.njk index 2db5a11..f431b1a 100644 --- a/changelog.njk +++ b/changelog.njk @@ -60,8 +60,8 @@ withSidebar: false
c.category === this.activeTab); + return this.commits.filter(c => c.commitCategory === this.activeTab); }, getCount(tabKey) { if (tabKey === 'all') return this.commits.length; - return this.commits.filter(c => c.category === tabKey).length; + return this.commits.filter(c => c.commitCategory === tabKey).length; }, formatDate(dateStr) { diff --git a/where.njk b/where.njk index b559436..df92907 100644 --- a/where.njk +++ b/where.njk @@ -71,7 +71,7 @@ leafletMap: true {% endif %} {% if checkins.length %} -

/Been

+

Been

{% set grouped = checkins | groupby("name") %}