MEH-Design / frix

A CMS based on atomic design principles.
MIT License
2 stars 1 forks source link

double references are resolved as [object Object] #81

Closed MiniXC closed 7 years ago

MiniXC commented 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.

example

<p text-content="someAttribute"></p>
<p text-content="someAttribute"></p>

results in

<p>someValue</p>
<p>[object Object]</p>