Skip to content

Commit

Permalink
[bugfix] Fixed small bug for error report
Browse files Browse the repository at this point in the history
  • Loading branch information
veronikaslc committed Oct 15, 2020
1 parent b87c1f2 commit bd518fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guids-generator.html
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
// There should be 3 pieces per each line: Health card #, Province code, Date of birth, all separated by ','
let checkInfoCount = (info, index) => {
if (info.length != 3) {
return "Line " + index + ", '" + line + "', has " + info.length
return "Line " + index + ", '" + info.join(',') + "', has " + info.length
+ " component(s) instead of 3. Each line should contain the patient's Health Card number, the province code, and the patient's date of birth.";
}
return null;
Expand Down

0 comments on commit bd518fa

Please sign in to comment.