-
-
Notifications
You must be signed in to change notification settings - Fork 33
Closed
Labels
good first issueGood for newcomersGood for newcomers
Description
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
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers