From acd212fd4ffad79269a8e78b9387fff222650ee7 Mon Sep 17 00:00:00 2001 From: Dominic Ferrando Date: Fri, 25 Apr 2025 22:42:29 -0400 Subject: [PATCH] Fix catalog preview icons --- web/views/board.templ | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/web/views/board.templ b/web/views/board.templ index 306db29..3f2cb63 100644 --- a/web/views/board.templ +++ b/web/views/board.templ @@ -113,14 +113,6 @@ templ ThreadsCatalog(previews []CatalogThreadPreview, catalogContext CatalogCont />
- - if preview.Locked { - Locked - } - if preview.Pinned { - Pinned - } - R: { replyCount } / I: { ipCount } if catalogContext.IsAdmin { @@ -134,6 +126,14 @@ templ ThreadsCatalog(previews []CatalogThreadPreview, catalogContext CatalogCont } + + if preview.Locked { + Locked + } + if preview.Pinned { + Pinned + } +