Skip to content

Commit

Permalink
Re-fixed an issue (broken after somebody merged?) in PDFormFooter whe…
Browse files Browse the repository at this point in the history
…re the event for the 'No' button was not being raised.
  • Loading branch information
rolandbanks committed Jan 9, 2025
1 parent cf419cd commit 9eb5c9f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions PanoramicData.Blazor/PDFormFooter.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ private async Task OnNoAsync(MouseEventArgs args)
if (Form?.Item != null)
{
await Form.EditItemAsync(Form.Item, Form.PreviousMode, false).ConfigureAwait(true);
await Click.InvokeAsync("No").ConfigureAwait(true);
}
}

Expand Down

0 comments on commit 9eb5c9f

Please sign in to comment.