diff --git a/src/components/CellViews/ImageCell.js b/src/components/CellViews/ImageCell.js index 1c9b498d..73da002d 100644 --- a/src/components/CellViews/ImageCell.js +++ b/src/components/CellViews/ImageCell.js @@ -13,17 +13,21 @@ export const ImageCell = (column) => { column: { alias }, } = column; const root = getRoot(original); + const isDE = root.SDK.type === 'DE'; const renderImagePreview = original.total_annotations === 0 || !root.showPreviews; const imgSrc = Array.isArray(value) ? value[0] : value; if (!imgSrc) return null; + if (isDE) { + imgDefaultProps.crossOrigin = 'anonymous'; + } return renderImagePreview ? (