From 88b65cd86466ad326b11faca89db28e6464d1958 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 7 Jun 2024 14:44:24 +0200 Subject: [PATCH] :bug: Fix incorrect compilation of css-case macro in a small corne case --- frontend/src/app/main/style.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/main/style.clj b/frontend/src/app/main/style.clj index a1870314af..ea9a0242ad 100644 --- a/frontend/src/app/main/style.clj +++ b/frontend/src/app/main/style.clj @@ -97,7 +97,7 @@ (when cls (cond (true? v) cls - (false? v) nil + (false? v) "" :else `(if ~v ~cls "")))))) (interpose " ")))