client: Improve hint & toast regarding attachments

This commit is contained in:
Elian Doran 2024-08-17 10:51:43 +03:00
parent 808797a48b
commit 937e87d760
No known key found for this signature in database
2 changed files with 1121 additions and 1122 deletions

View File

@ -8,9 +8,9 @@ function copyImageReferenceToClipboard($imageWrapper) {
const success = document.execCommand('copy'); const success = document.execCommand('copy');
if (success) { if (success) {
toastService.showMessage("Image copied to the clipboard"); toastService.showMessage("A reference to the image has been copied to clipboard. This can be pasted in any text note.");
} else { } else {
toastService.showAndLogError("Could not copy the image to clipboard."); toastService.showAndLogError("Could not copy the image reference to clipboard.");
} }
} }
finally { finally {

File diff suppressed because it is too large Load Diff