Skip to content

Commit

Permalink
fixed default case for Issue sfbrigade#48
Browse files Browse the repository at this point in the history
  • Loading branch information
juliahazer committed Mar 5, 2017
1 parent 162b923 commit b2aa267
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/modules/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,10 +171,10 @@ var tableModule = (function(window, $) {
incidentJson[i].resolution.includes("ARREST")):
incidentJson[i].cscategory = "WEAPONS POSSESSION";
break;
default:
incidentJson[i].cscategory = "NONE";
break;
}
if (incidentJson[i].cscategory === ""){
incidentJson[i].cscategory = "NONE";
}
}
return incidentJson;
}
Expand Down

0 comments on commit b2aa267

Please sign in to comment.