v4.1.9
What's Changed
- Dev branch by @KiranMantha in #45
- Fixed an issue in displaying boolean values in UI forcing dev to use
.toString()
to display properly.
Before fix:
return html`<p>0.toString()</p>`
After fix:
return html`<p>0</p>`
Full Changelog: v4.1.8...v4.1.9