Skip to content

Commit

Permalink
Pass the GroupKey instead of undefined when deleting payments
Browse files Browse the repository at this point in the history
Closes #5105
  • Loading branch information
crossan007 committed Jan 10, 2020
1 parent 62684cd commit c7530d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DepositSlipEditor.php
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@
$.each(deletedRows, function(index, value) {
window.CRM.APIRequest({
method: 'DELETE',
path: 'payments/' + value.Groupkey,
path: 'payments/' + value.GroupKey,
})
.done(function(data) {
dataT.rows('.selected').remove().draw(false);
Expand Down

0 comments on commit c7530d9

Please sign in to comment.