Skip to content

Commit

Permalink
Merge pull request #232 from cdisc-org/Supp_Domain
Browse files Browse the repository at this point in the history
SUPP-- Interim Fix
  • Loading branch information
RamilCDISC authored Jul 22, 2024
2 parents 8dc6fd9 + 2f27d80 commit 419703c
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 419703c

Please sign in to comment.