From 03f8663520385e59a1550bf7fca047033ded3676 Mon Sep 17 00:00:00 2001 From: Jukka Lampikoski Date: Sun, 8 Mar 2026 13:29:59 +0200 Subject: [PATCH] Change Vahvistettu badge to Kirjautunut and bold logged-in author names Co-Authored-By: Claude Opus 4.6 --- script.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script.js b/script.js index 1c74979..fb573ae 100644 --- a/script.js +++ b/script.js @@ -225,7 +225,7 @@ function renderCards() {
${getCategoryLabel(p.category)}

${p.title}

- ${p.author ? `

✍️ ${p.author}${p.submittedBy?.validated ? ' ✔ Vahvistettu' : (p.submittedBy?.guestCode ? ` #${p.submittedBy.guestCode}` : '')}

` : ''} + ${p.author ? `

✍️ ${p.submittedBy?.validated ? `${p.author} ✔ Kirjautunut` : `${p.author}${p.submittedBy?.guestCode ? ` #${p.submittedBy.guestCode}` : ''}`}

` : ''}

${p.desc || ''}

${metaRow}
@@ -338,7 +338,7 @@ async function openPost(id) {