Skip to content

Commit

Permalink
Fix two linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
acrosman committed Oct 3, 2021
1 parent cd443eb commit 51075c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/javascript/src/dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ $('document').ready(() => {
<a href="${casaCasePath(casaCase.id)}">${casaCase.case_number}</a>
`
})
var caseNumbers = `
const caseNumbers = `
<span class="mobile-label">Case Number(s)</span>
${links.join(', ')}
`
Expand Down Expand Up @@ -284,7 +284,7 @@ $('document').ready(() => {

defineSupervisorsDataTable()

function filterOutUnassignedVolunteers(checked) {
function filterOutUnassignedVolunteers (checked) {
$('.supervisor-options').find('input[type="checkbox"]').not('#unassigned-vol-filter').each(function () {
this.checked = checked
})
Expand Down

0 comments on commit 51075c2

Please sign in to comment.