fix known spacing issue

This commit is contained in:
biglyderv 2025-05-26 23:38:24 -04:00
parent fe9e3ce840
commit 77892000cb
Signed by: biglyderv
GPG key ID: 0E2EB0B4CD7397B5

View file

@ -23,6 +23,6 @@
</a>
<% } else if (contentN.type == 'link') { %>
<a class='link' href='<%= contentN.href %>'><%= contentN.name %></a>
<% } else if (contentN.type.replaceAll(' ','').length > 0) { %>
<% } else if (contentN.data.replaceAll(' ','').length > 0) { %>
<span class='commentbox'><%= contentN.data %></span>
<% } } %>