Skip to content

Commit

Permalink
SUPP-- Interim Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SFJohnson24 authored Jul 18, 2024
1 parent de9cbbc commit 2f27d80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/ExcelDataset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ const getRecords = (cols: IVariable[], rows: {}[]): {} => {
const getDomainName = (rows: {}[], sheetName: string): string => {
if (rows.length > 3) {
const domainRow = rows[3];
const domainName = domainRow["DOMAIN"] || domainRow["RDOMAIN"];
const domainName = domainRow["DOMAIN"]
return domainName || sheetName.toUpperCase().replace(".XPT", "");
}
return sheetName.toUpperCase().replace(".XPT", "");
Expand Down

0 comments on commit 2f27d80

Please sign in to comment.