Skip to content

Commit

Permalink
Merge pull request #14445 from demeritcowboy/deletedActivitiesSearchF…
Browse files Browse the repository at this point in the history
…ilter

dev/core#1022 - Manage Case deleted activities search filter no longer working
  • Loading branch information
yashodha authored Jun 6, 2019
2 parents fa5e0fd + 43f790f commit 880fd74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/CRM/Case/Form/ActivityTab.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
d.activity_type_id = $("select#activity_type_filter_id_" + caseId).val(),
d.activity_date_low = $("#activity_date_low_" + caseId).val(),
d.activity_date_high = $("#activity_date_high_" + caseId).val(),
d.activity_deleted = ($("#activity_deleted_1").prop('checked')) ? 1 : 0;
d.activity_deleted = ($("#activity_deleted_" + caseId).prop('checked')) ? 1 : 0;
}
}
});
Expand Down

0 comments on commit 880fd74

Please sign in to comment.