Fix bad path set for object data prop

This commit is contained in:
2025-06-16 22:41:30 -07:00
parent 13c0a98f1b
commit 19b1a0aadd
2 changed files with 6 additions and 6 deletions

View File

@@ -132,5 +132,5 @@ object.addEventListener('load', load);
objectDataObserver.observe(object, { attributeFilter: ['data'] });
if (object.getAttribute('data') !== fileName) {
object.data = `assets/images/${fileName}`;
object.data = fileName;
}