diff --git a/src/pages/sponsors-global/form-templates/sponsor-inventory-popup.js b/src/pages/sponsors-global/form-templates/sponsor-inventory-popup.js index f66bfd749..68a21254f 100644 --- a/src/pages/sponsors-global/form-templates/sponsor-inventory-popup.js +++ b/src/pages/sponsors-global/form-templates/sponsor-inventory-popup.js @@ -112,10 +112,13 @@ const SponsorItemDialog = ({ const getMediaInputValue = () => initialEntity.images?.length > 0 - ? initialEntity.images.map((img) => ({ - ...img, - filename: img.filename ?? img.file_path ?? img.file_url - })) + ? initialEntity.images.map((img) => { + const filename = img.filename ?? img.file_path ?? img.file_url; + return { + ...img, + filename: filename.concat("?buster=", Date.now()) + }; + }) : []; const handleClose = () => {