From 986d983dc174b67e42a74cf2d7a08cc4a44c6ffa Mon Sep 17 00:00:00 2001 From: masterhc Date: Thu, 18 Apr 2024 19:29:37 +0100 Subject: [PATCH] Allow tags with 6 leters to be show its complet ename --- views/searchCards.ejs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/searchCards.ejs b/views/searchCards.ejs index 8e0b0a7..7b2a89d 100644 --- a/views/searchCards.ejs +++ b/views/searchCards.ejs @@ -27,7 +27,7 @@
<% for(let [index, tag] of result.tags.entries()) {%> <% if(index >= 3) continue %> - <%= tag.slice(0, 5)+(tag.length>5?'...':'')%> + <%= tag.slice(0, 6)+(tag.length>6?'...':'')%> <% } %>