Typo in export.js (#1682)

This commit is contained in:
Mirwaisse Djanbaz 2021-02-23 21:20:19 +01:00 committed by GitHub
parent dcf1c62ec1
commit f62b4a581e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -129,7 +129,7 @@ ws.subscribeToMessages(async message => {
toastService.showPersistent(makeToast(message.taskId, "Export in progress: " + message.progressCount));
}
else if (message.type === 'task-succeeded') {
const toast = makeToast(message.taskId, "Import finished successfully.");
const toast = makeToast(message.taskId, "Export finished successfully.");
toast.closeAfter = 5000;
toastService.showPersistent(toast);