This commit is contained in:
Vanessa 2022-06-07 21:05:06 +08:00
parent 0c7e5e8667
commit 6fc62d12ee
6 changed files with 14 additions and 14 deletions

View file

@ -162,11 +162,11 @@ export const exportConfig = {
properties: ["showOverwriteConfirmation"],
}).then((result: SaveDialogReturnValue) => {
if (!result.canceled) {
const id = showMessage(window.siyuan.languages.exporting, -1);
const msgId = showMessage(window.siyuan.languages.exporting, -1);
fetchPost("/api/export/exportDataInFolder", {
folder: result.filePath
}, () => {
afterExport(result.filePath, id);
afterExport(result.filePath, msgId);
});
}
});