A template expression with { value: 0 } should render a 0 in a template such as:
const expr = { value: 0};
document.body.innerHTML = rml`
<div>${expr}</div>
`;
Expected behavior
A <div>0</div> should be rendered instead.
If you need step-by-step tracing, add a rml:debugger attribute right before the expression you want to debug:
<span rml:debugger>${expr}</span>
Reproduce with this code
A template expression with { value: 0 } should render a 0 in a template such as:
Expected behavior
A
<div>0</div>should be rendered instead.If you need step-by-step tracing, add a
rml:debuggerattribute right before the expression you want to debug:Reproduce with this code