Skip to content

Commit

Permalink
Fix case
Browse files Browse the repository at this point in the history
  • Loading branch information
domialex committed Dec 28, 2024
1 parent 23b2726 commit 109fd0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Sidekick.Common.Ui/Layouts/LayoutTwoColumn.razor
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
}
</script>

@inject IJSRuntime jsRuntime
@inject IJSRuntime JSRuntime

@code {

Expand Down Expand Up @@ -96,7 +96,7 @@
try
{
var dotNetReference = DotNetObjectReference.Create(this);
await jsRuntime.InvokeVoidAsync("attachResizeObserver", LeftContentId, nameof(ResizeLeftContent), dotNetReference);
await JSRuntime.InvokeVoidAsync("attachResizeObserver", LeftContentId, nameof(ResizeLeftContent), dotNetReference);
}
catch { }
}
Expand Down

0 comments on commit 109fd0d

Please sign in to comment.