Why is onkeydown functioning differently than onclick? – Asp.net
this is my first time with Blazor, so apologies if this sounds stupid. Here is some Blazor code I wrote: <ul> @foreach (var tag in tags) { <li> @tag <button class="btn btn-primary" @onclick="() => remove(tag)">remove</button> </li> } </ul> <PageTitle>Home</PageTitle> <h1>Tags</h1>…