Skip to content

Commit

Permalink
Ignore casing for travel mode
Browse files Browse the repository at this point in the history
  • Loading branch information
jmccollum-woolpert committed Sep 17, 2024
1 parent c243c26 commit 9bc3d27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/frontend/src/app/core/services/csv.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ export class CsvService {
}

private parseTravelMode(value: string): number {
return TravelMode[value];
return TravelMode[value.toUpperCase()];
}

// Check map has the provided mapKey and if the model object has a value for the converted key
Expand Down

0 comments on commit 9bc3d27

Please sign in to comment.