I sometimes get double click events

I have a button in a RadzenDataGridColumn like this:
<RadzenButton ButtonStyle="ButtonStyle.Success" title="Start" Icon="play_circle"
Click="@(args => Start(server.Config.Id))" @onclick:stopPropagation="true" />
We have noticed that we sometimes get double start events, and i captured it in my log files. The events this time was 52 ms apart. I don't think it is possible to do two single clicks 50 ms after each other, that would be a double click I think?
I have to do a lot of clicking to reproduce this.
Is this a known problem? Is it a browser problem or are there something Radzen can do? Do you want me to something more to figure out what the problem is?
I noticed this in Chrome. We have seen it on both Ubuntu and Windows 10.

Hi @Bjorn_Carlsson,

I think this is just how browsers work. If you want a button to be clicked only once consider disabling it after the first click.

I have a suspicion, that it might be related to a SignalR communication glitch, a retry or something. After writing this post I pushed this buttons quickly on three rows in the data grid and got duplicate events on all three.