Skip to content

Commit

Permalink
fix: Excel parsing values getting stripped and review table showing…
Browse files Browse the repository at this point in the history
… only fixed set of values (#527)
  • Loading branch information
chavda-bhavik authored Mar 14, 2024
2 parents 058c9b3 + 4fc6a44 commit 91ab4df
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion apps/api/src/app/shared/services/file/file.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ export class ExcelFileService {
XLSX.utils.sheet_to_csv(ws, {
blankrows: false,
skipHidden: true,
strip: true,
rawNumbers: true,
})
);
Expand Down
2 changes: 1 addition & 1 deletion apps/widget/src/components/Common/Table/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ export const Table = forwardRef<HotTableClass, TableProps>(
if (changes[i] && changes[i]?.[3] === null) changes[i]![3] = undefined;
}
}}
stretchH="all"
// stretchH="all"
columns={columnDefs}
colHeaders={headings}
afterRender={afterRender}
Expand Down

0 comments on commit 91ab4df

Please sign in to comment.