Skip to content

Commit 8cd829f

Browse files
committed
refactor: 代码重构
1 parent 037be7d commit 8cd829f

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/BootstrapBlazor/Components/Table/Table.razor.Toolbar.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -900,7 +900,14 @@ protected async Task ShowEditDrawer(ItemChangedType changedType)
900900
};
901901
AppendOptions(editOption, changedType);
902902

903-
var option = new DrawerOption() { Class = "drawer-table-edit", Placement = Placement.Right, AllowResize = true, IsBackdrop = true, Width = "600px" };
903+
var option = new DrawerOption()
904+
{
905+
Class = "drawer-table-edit",
906+
Placement = Placement.Right,
907+
AllowResize = true,
908+
IsBackdrop = true,
909+
Width = "600px"
910+
};
904911
if (OnBeforeShowDrawer != null)
905912
{
906913
await OnBeforeShowDrawer(option);

0 commit comments

Comments
 (0)