Skip to content

Commit b9a0443

Browse files
authored
Merge pull request #307 from Mognom/fixFirefoxCatalogue
Fix Firefox catalogue images not loading
2 parents 0f8142d + b40ad88 commit b9a0443

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wirecloud/catalogue/static/js/wirecloud/ui/ResourcePainter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@
176176

177177
if (resource.image) {
178178
image.onerror = onImageError;
179-
image.src = resource.image;
179+
setTimeout(() => {image.src = resource.image;});
180180
} else {
181181
setTimeout(onImageError.bind(null, {target: image}), 0);
182182
}

0 commit comments

Comments
 (0)