diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/util/html.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/html.js b/src/util/html.js index 65a06440..a1d6962a 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; } |