From 9d1e957f54dca5b899e58b333e663cdef88911e0 Mon Sep 17 00:00:00 2001 From: SamidyFR <168582143+SamidyFR@users.noreply.github.com> Date: Mon, 6 Apr 2026 16:56:49 +0000 Subject: [PATCH] style: auto-fix linting issues --- js/ui.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/js/ui.js b/js/ui.js index 3e30b3b..20fbdd0 100644 --- a/js/ui.js +++ b/js/ui.js @@ -3907,7 +3907,9 @@ export class UIRenderer { reviewdiv.style.paddingBottom = '1rem'; reviewdiv.style.borderBottom = '1px solid var(--border)'; - const publication = decodeHtml(review.publication || review.source || 'Unknown Publication'); + const publication = decodeHtml( + review.publication || review.source || 'Unknown Publication' + ); const author = decodeHtml(review.author || ''); const quote = decodeHtml(review.text || review.quote || 'No review text available.');