« get me outta code hell

html, test: default slots only for null, not falsey values - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2023-04-15 19:35:51 -0300
committer(quasar) nebula <qznebula@protonmail.com>2023-04-15 19:35:51 -0300
commit27a1df82ac455a44965cbcaef3e3bd1765d95942 (patch)
tree047df07887a7d232a818b3c883f4d9a0542286b3 /src
parent357015de21e7e427f25b31a2622fb9182ec292e1 (diff)
html, test: default slots only for null, not falsey values
Diffstat (limited to 'src')
-rw-r--r--src/util/html.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/html.js b/src/util/html.js
index 65a0644..a1d6962 100644
--- a/src/util/html.js
+++ b/src/util/html.js
@@ -691,7 +691,7 @@ export class Template {
       return providedValue;
     }
 
-    if (providedValue) {
+    if (providedValue !== null) {
       return providedValue;
     }