IO-1169 Download only images.

This commit is contained in:
Patrick Fic
2021-06-02 10:48:01 -07:00
parent b897795c27
commit 8427ea208b
3 changed files with 9 additions and 10 deletions

View File

@@ -56,6 +56,7 @@ function JobsDocumentsComponent({
isSelected: false,
key: value.key,
extension: value.extension,
id: value.id,
type: value.type,
size: value.size,
@@ -74,7 +75,8 @@ function JobsDocumentsComponent({
const fileName = value.key.split("/").pop();
acc.other.push({
src: GenerateSrcUrl(value),
source: GenerateSrcUrl(value),
src: "",
thumbnail: thumb,
tags: [
{
@@ -100,6 +102,7 @@ function JobsDocumentsComponent({
thumbnailHeight: 225,
thumbnailWidth: 225,
isSelected: false,
extension: value.extension,
key: value.key,
id: value.id,
@@ -211,7 +214,7 @@ function JobsDocumentsComponent({
}}
onClickThumbnail={(index) => {
window.open(
galleryImages.other[index].src,
galleryImages.other[index].source,
"_blank",
"toolbar=0,location=0,menubar=0"
);