Skip to content

Commit

Permalink
Merge pull request #29 from VolkerLieber/master
Browse files Browse the repository at this point in the history
Fixed typo
  • Loading branch information
yagizhanNY committed Feb 15, 2024
2 parents d0fed03 + 20aac05 commit 182b38a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SiemensIXBlazor/Components/EventList/EventListItem.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public partial class EventListItem
[Parameter]
public bool? Selected { get; set; }
[Parameter]
public EventCallback ItemCLickEvent { get; set; }
public EventCallback ItemClickEvent { get; set; }

private BaseInterop _interop;

Expand All @@ -38,7 +38,7 @@ protected async override Task OnAfterRenderAsync(bool firstRender)
[JSInvokable]
public async void ItemClicked()
{
await ItemCLickEvent.InvokeAsync();
await ItemClickEvent.InvokeAsync();
}
}
}

0 comments on commit 182b38a

Please sign in to comment.