I have following issue here:
<ul class="aClass">
{{#if something}}
<li>{{#link-to "blub" bind-attr data-testid=aID}}{{loc "blub"}}{{/link-to}}</li>
{{/if}}
</ul>
so i want to have an element(the link-to is rendered to <a href="">...</a>
) in the resulting element with the id aId. But the element does not contain the wanted id in the rendered HTML. something like this:
<a href="" data-testid="aID">...</a>
any ideas?