IO-2419 Thumbnails being emailed instead of Full Size Image

This commit is contained in:
Allan Carr
2023-10-19 09:30:29 -07:00
parent e7c3be5231
commit 02fd8097a8
2 changed files with 2 additions and 2 deletions

View File

@@ -52,7 +52,7 @@ function JobDocumentsLocalGalleryExternal({
val.type.mime &&
val.type.mime.startsWith("image")
) {
acc.push({ ...val, src: val.thumbnail });
acc.push({ ...val, src: val.thumbnail, fullsize: val.src });
}
return acc;
}, [])