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 e2cbf776..b5930d06 100644 --- a/src/util/html.js +++ b/src/util/html.js @@ -73,7 +73,7 @@ export function isHTML(value) { return true; } - if (value === null || value === undefined) { + if (value === null || value === undefined || value === false) { return true; } |