Browse Source

Merge pull request #8891 from nocodb/nc-fix/excel-import-issue

fix: Error: `this.xlsx.read` is not a function while importing xlsx file in oss
fix/8667-wh-pay
Ramesh Mane 5 months ago committed by GitHub
parent
commit
eb383c8aa6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      packages/nc-gui/helpers/parsers/ExcelTemplateAdapter.ts

2
packages/nc-gui/helpers/parsers/ExcelTemplateAdapter.ts

@ -38,7 +38,7 @@ export default class ExcelTemplateAdapter extends TemplateGenerator {
this.base = {
tables: [],
}
this.xlsx = xlsx || ({} as any)
this.xlsx = xlsx
}
async init() {

Loading…
Cancel
Save