mirror of
https://github.com/ljcoder2015/obsidian-excel.git
synced 2026-07-22 08:30:28 +00:00
fix: 导入数据不正确的bug
This commit is contained in:
parent
f166222309
commit
9921566ec1
1 changed files with 1 additions and 1 deletions
|
|
@ -102,7 +102,7 @@ export class ExcelView extends TextFileView {
|
|||
const sheetData = stox(wb);
|
||||
if (sheetData) {
|
||||
this.sheet.loadData(sheetData);
|
||||
this.data = JSON.stringify(sheetData);
|
||||
this.saveData(JSON.stringify(sheetData));
|
||||
} else {
|
||||
new Notice("Data parsing error");
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue