PointerID type string replaced to long (#7426)
Solves issue [#7418](https://github.com/aspnet/AspNetCore/issues/7418) - Blazor onpointerdown event gives error
This commit is contained in:
parent
132a1ad31b
commit
a314cb2773
|
|
@ -330,7 +330,7 @@ namespace Microsoft.AspNetCore.Components
|
|||
/// <summary>
|
||||
/// A unique identifier for the pointer causing the event.
|
||||
/// </summary>
|
||||
public string PointerId { get; set; }
|
||||
public long PointerId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The width (magnitude on the X axis), in CSS pixels, of the contact geometry of the pointer.
|
||||
|
|
|
|||
Loading…
Reference in New Issue