Closed MiniXC closed 7 years ago
When referencing the same json value twice in a html template, the second value is inserted as [object Object, while the first value is inserted correctly.
[object Object
example
<p text-content="someAttribute"></p> <p text-content="someAttribute"></p>
results in
<p>someValue</p> <p>[object Object]</p>
When referencing the same json value twice in a html template, the second value is inserted as
[object Object
, while the first value is inserted correctly.example
results in