How can I add NavLink for whole li of autocomplete. Currently it is only inside the span (red rectangle).
<RadzenAutoComplete @bind-Value=@_itemName Data=@_items TextProperty=Name Style="width: 20rem" Placeholder="Search for item"
InputAttributes=@(new Dictionary<string,object>(){ { "aria-label", "Item Name" }})>
<Template>
<NavLink class="flex items-center" href=" /test")>
<RadzenImage Path="@context.Icon" />
<RadzenText Text="@context.Name" />
</NavLink>
</Template>
</RadzenAutoComplete>

This is the generated html, I want the navlink in li not span
<li role="option" class="rz-autocomplete-list-item" onmousedown="Radzen.activeElement = null"><!--!-->
<span><!--!-->
<!--!--><a href="/test" class="flex items-center"><!--!--> <img src="images/test.png?" class="" id="2WpysbVjtk" alt="image" _bl_f5c3f36d-1205-401b-a0b4-349071e625b1=""><!--!-->
<!--!-->
<!--!--><p class="rz-text-body1" id="syX5f60hYk" _bl_e21b1d49-3e14-465f-83cd-4cff5fc0ff54="">Test Test</p></a> </span><!--!-->
</li>