We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
Did we fix this @doub1ejack
Sorry, something went wrong.
This seems to be a pending case issues. It picks up no counts below because there is no disposition section.
This bug was checked by handling null dispositions in beautifyDisposition function
` // grab the disposition section from docket const dispositionDivs = docket .find('[data-header-text="Dispositions"]') .parent() .find('.roa-section-content md-content > div');
// parse each plea event and add to offenseArray dispositionDivs.find('.roa-event-plea-event').each(function (i) { // parse plea information const jqPlea = $(this); const countText = jqPlea .find('.roa-event-content > div > div > div:nth-child(2)') .text() .trim(); const countNum = parseInt(countText.substr(0, 1), 10); const pleaDate = jqPlea.find('.roa-event-date-col').text().trim(); const decision = jqPlea .find('.roa-event-content > div > div > div:nth-child(3)') .text() .trim();`
doub1ejack
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: