Skip to content

Commit

Permalink
Fix external character types showing wrong type
Browse files Browse the repository at this point in the history
  • Loading branch information
worksofliam committed May 7, 2022
1 parent 5eb1fe9 commit 42dec2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const fetchTables = async (table) => {
currentSubfield.name = name;
currentSubfield.keywords = [Fixed.getPrettyType({
type,
len: digits === `0` ? strLength : digits,
len: digits === 0 ? strLength : digits,
decimals: decimals,
keywords: [],
})];
Expand Down

0 comments on commit 42dec2b

Please sign in to comment.