Error fixing and debugging implementation.
Release Inventarsystem / release-docker (push) Successful in 2m17s

This commit is contained in:
2026-08-17 00:39:38 +02:00
parent 41d9c0a848
commit 0ea5d2db26
2 changed files with 13 additions and 5 deletions
+8 -3
View File
@@ -1381,9 +1381,14 @@
: `/uploads/${image}`;
return `
<div class="item-image-wrapper">
<img src="${imageSrc}" alt="Buchcover / Bild" class="item-image" loading="lazy">
</div>
<div class="item-image-wrapper">
<img src="${imageSrc}"
alt="Buchcover"
class="item-image"
loading="lazy"
onload="console.log('Bild geladen:', '${imageSrc}')"
onerror="console.error('FEHLER beim Laden des Bildes im DOM:', '${imageSrc}')">
</div>
`;
}).join('');