Fix result toast text of shared encrypted file

This commit is contained in:
Vladislav Makhov 2020-12-08 12:27:57 +03:00
parent 3aff383486
commit 5fd757073f

View File

@ -137,7 +137,9 @@ class SharingPanelComponent extends React.Component {
encryptedFile,
true,
true
).then(() => toastr.info(`File ${item.title} created`));
).then(() =>
toastr.info(`File ${item.title} succesfully shared`)
);
});
});
}