Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/BootstrapBlazor/BootstrapBlazor.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<Version>9.9.2-beta01</Version>
<Version>9.9.2-beta03</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,16 @@
{
case TableCellButton { IsShow: true } b:
<Button AdditionalAttributes="b.AdditionalAttributes" Size="b.Size"
Color="@b.Color" Icon="@b.Icon" Text="@b.Text" IsAsync="@b.IsAsync"
Color="@b.Color" Icon="@b.Icon" Text="@b.Text"
IsAsync="@b.IsAsync" IsKeepDisabled="b.IsKeepDisabled"
TooltipText="@b.TooltipText" TooltipPlacement="@b.TooltipPlacement"
TooltipTrigger="@b.TooltipTrigger" ChildContent="@b.ChildContent"
OnClickWithoutRender="() => OnClick(b)" IsDisabled="b.IsDisabled"></Button>
break;
case TableCellPopConfirmButton { IsShow: true } pb:
<PopConfirmButton AdditionalAttributes="pb.AdditionalAttributes"
Color="@pb.Color" Icon="@pb.Icon" Text="@pb.Text" IsAsync="@pb.IsAsync"
Color="@pb.Color" Icon="@pb.Icon" Text="@pb.Text"
IsAsync="@pb.IsAsync" IsKeepDisabled="b.IsKeepDisabled"

Check failure on line 22 in src/BootstrapBlazor/Components/Table/TableExtensionButton.razor

View workflow job for this annotation

GitHub Actions / run test

The name 'b' does not exist in the current context
Size="pb.Size" ShowShadow="@pb.ShowShadow" IsDisabled="@pb.IsDisabled"
IsBlock="@pb.IsBlock" IsOutline="@pb.IsOutline"
OnBeforeClick="@pb.OnBeforeClick" OnClose="@pb.OnClose" OnConfirm="() => OnClickConfirm(pb)"
Expand Down
Loading