Skip to content

Commit

Permalink
user number constructor than assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
mishraomp committed Jul 30, 2024
1 parent c9530b1 commit 873ee98
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export class AmsOracleConnectorService implements OnModuleInit {
for (const row of result) {
const authNum: number = Number(row['Authorization Number'])
const doc = {
DocumentObjectID: row['DocumentObjectID'] as number,
DocumentObjectID: Number(row['DocumentObjectID']),
Description: row['Description'],
Publiclyviewable: row['Publiclyviewable'],
}
Expand Down

0 comments on commit 873ee98

Please sign in to comment.