Skip to content

Commit

Permalink
Merge pull request #313 from freelawproject/329-uncheck-terminates-pa…
Browse files Browse the repository at this point in the history
…rties
  • Loading branch information
mlissner authored Jan 11, 2023
2 parents 8c2481a + 4d2db1b commit 91c3866
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
The following changes are not yet released, but are code complete:

Features:
- None yet
- Uncheck terminates parties field of docket query form in district courts([#329](https://github.com/freelawproject/recap/issues/329), [#313](https://github.com/freelawproject/recap-chrome/pull/313))

Changes:
- None yet
Expand Down
2 changes: 2 additions & 0 deletions src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -310,9 +310,11 @@ const recapAddLatestFilingButton = (result) => {
let dateInput = document.querySelector("[name='date_from']");
let partyCheckbox = document.getElementById('list_of_parties_and_counsel');
let filedCheckbox = document.querySelector('input[value="Filed"]');
let terminatedParties = document.getElementById('terminated_parties');

dateInput.value = target.dataset.date_from;
partyCheckbox.checked = false;
terminatedParties.checked = false;
filedCheckbox.checked = true;

return false;
Expand Down

0 comments on commit 91c3866

Please sign in to comment.