Skip to content

Commit

Permalink
0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
justinc committed Jan 3, 2021
1 parent 9011754 commit c0bd2f1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@cael-aero/casa-utils",
"description": "Utilities for interacting with CASA Data",
"version": "0.4.0",
"version": "0.4.1",
"license": "BSD-3-Clause",
"readme": "README.md",
"author": "Justin Couch",
Expand Down
2 changes: 1 addition & 1 deletion src/register/registration-loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export class CASARegistrationLoader {
entry.propellerModel = String(row[35]).trim();
}

entry.typeCertificateNumber = (row[36] as string);
entry.typeCertificateNumber = row[36] as string;

const holder_postcode = row[17] ? String(row[17]).padStart(4, '0') : null;
const holder_add = Address.create2Line(
Expand Down

0 comments on commit c0bd2f1

Please sign in to comment.