Skip to content

Commit 6b73e28

Browse files
authored
feat(TableToolbarButton): add IsOutline parameter (#6486)
* refactor(TableToolbarButton): add missing parameter * chore: bump version 9.8.2
1 parent 967b5ca commit 6b73e28

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/BootstrapBlazor/BootstrapBlazor.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Razor">
22

33
<PropertyGroup>
4-
<Version>9.8.2-beta05</Version>
4+
<Version>9.8.2</Version>
55
</PropertyGroup>
66

77
<ItemGroup>

src/BootstrapBlazor/Components/Table/TableToolbar.razor

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@
1414
@if (button is TableToolbarButton<TItem> { IsShow: true } b)
1515
{
1616
<Button AdditionalAttributes="b.AdditionalAttributes" Size="b.Size"
17-
Color="@b.Color" Icon="@b.Icon" Text="@b.Text" IsAsync="@b.IsAsync"
17+
Color="@b.Color" Icon="@b.Icon" Text="@b.Text"
1818
OnClickWithoutRender="() => OnToolbarButtonClick(b)"
1919
TooltipText="@b.TooltipText" TooltipPlacement="@b.TooltipPlacement" TooltipTrigger="@b.TooltipTrigger"
20-
IsDisabled="GetDisabled(b)"></Button>
20+
IsAsync="@b.IsAsync" IsDisabled="GetDisabled(b)" IsKeepDisabled="@b.IsKeepDisabled"
21+
IsBlock="@b.IsBlock" IsOutline="@b.IsOutline"></Button>
2122
}
2223
else if (button is TableToolbarPopConfirmButton<TItem> { IsShow: true } pb)
2324
{

0 commit comments

Comments
 (0)