Skip to content

Commit

Permalink
Revert formating
Browse files Browse the repository at this point in the history
  • Loading branch information
stsrki committed Oct 16, 2023
1 parent f5346a2 commit 70a1095
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions Source/Extensions/Blazorise.DataGrid/_DataGridRowEdit.razor
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,11 @@
@if ( ParentDataGrid.CommandColumn?.SaveCommandTemplate != null )
{
@ParentDataGrid.CommandColumn.SaveCommandTemplate( new()
{
Clicked = callbackFactory.Create( this, Save ),
LocalizationString = saveButtonString,
Item = Item,
} )
;
{
Clicked = callbackFactory.Create( this, Save ),
LocalizationString = saveButtonString,
Item = Item,
});
}
else
{
Expand All @@ -70,12 +69,11 @@
@if ( ParentDataGrid.CommandColumn?.CancelCommandTemplate != null )
{
@ParentDataGrid.CommandColumn.CancelCommandTemplate( new()
{
Clicked = Cancel,
LocalizationString = cancelButtonString,
Item = Item,
} )
;
{
Clicked = Cancel,
LocalizationString = cancelButtonString,
Item = Item,
});
}
else
{
Expand Down

0 comments on commit 70a1095

Please sign in to comment.