It lets the browser "click" the button without requiring initial focus first.
The following can be a workaround for the time being:
<TelerikButton OnClick="@OnSave" Primary="true">
Save<span accesskey="S"></span>
</TelerikButton>
@code{
async Task OnSave()
{
Console.WriteLine("saved");
}
}