Skip to content

Commit

Permalink
Fix missing UI refresh on Transaction Page for deleting a BankTransac…
Browse files Browse the repository at this point in the history
…tion #206
  • Loading branch information
TheAxelander committed Dec 6, 2023
1 parent abad9df commit c2e67be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ public ViewModelOperationResult DeleteTransaction()
try
{
ServiceManager.BankTransactionService.Delete(TransactionId);
return new ViewModelOperationResult(true);
return new ViewModelOperationResult(true, true);
}
catch (Exception e)
{
Expand Down

0 comments on commit c2e67be

Please sign in to comment.