diff --git a/src/ExcelView.ts b/src/ExcelView.ts index b49aeeb..9cff893 100644 --- a/src/ExcelView.ts +++ b/src/ExcelView.ts @@ -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"); }