Skip to content

Commit

Permalink
Fixes Typo in div parent class
Browse files Browse the repository at this point in the history
  • Loading branch information
jbomhold3 committed Mar 8, 2021
1 parent 723da8e commit 5c4eb59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/BlazorSortableJS/BlazorSortableJS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>netstandard2.1;net5.0</TargetFrameworks>
<RazorLangVersion>3.0</RazorLangVersion>
<PackageId>BlazorSortableJs</PackageId>
<Version>1.0.5</Version>
<Version>1.0.6</Version>
<Authors>John J Bomhold</Authors>
<Title>Blazor SortableJs Wrapper</Title>
<Description>
Expand Down
2 changes: 1 addition & 1 deletion src/BlazorSortableJS/Components/SortGroup.razor
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{
if (IsDiv)
{
<div class="@TemplateClass" @onclick="@OnClick" id="@Id" data-refId="@Sortable.RefId">
<div class="@Class" @onclick="@OnClick" id="@Id" data-refId="@Sortable.RefId">
@foreach (var item in Sortable.GetRaw())
{
<div @key="item" @onclick="@TemplateOnClick" data-id="@item.DataId" Id="@(Guid.NewGuid())" class="@TemplateClass">
Expand Down

0 comments on commit 5c4eb59

Please sign in to comment.