From 77892000cb89b1d63c4369c006e675bedd67a938 Mon Sep 17 00:00:00 2001 From: biglyderv Date: Mon, 26 May 2025 23:38:24 -0400 Subject: [PATCH] fix known spacing issue --- views/formatted.ejs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/formatted.ejs b/views/formatted.ejs index 3f2e732..8943f8b 100644 --- a/views/formatted.ejs +++ b/views/formatted.ejs @@ -23,6 +23,6 @@ <% } else if (contentN.type == 'link') { %> <%= contentN.name %> -<% } else if (contentN.type.replaceAll(' ','').length > 0) { %> +<% } else if (contentN.data.replaceAll(' ','').length > 0) { %> <%= contentN.data %> <% } } %> \ No newline at end of file