leanweb 3.0.2 → 3.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "leanweb",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "description": "Builds framework agnostic web components.",
5
5
  "bin": {
6
6
  "leanweb": "leanweb.js",
@@ -426,7 +426,7 @@ export default class LWElement extends HTMLElement {
426
426
  bindNode.classList = initClass + ' ' + parsed[0];
427
427
  }
428
428
  } else {
429
- if (parsed[0] !== undefined && parsed[0] !== null) {
429
+ if (parsed[0] !== false && parsed[0] !== undefined && parsed[0] !== null) {
430
430
  bindNode.setAttribute(interpolation.lwValue, parsed[0]);
431
431
  } else {
432
432
  bindNode.removeAttribute(interpolation.lwValue);