#49 fix: popup de detalle de producto en el mapa abre correctamente al clicar en el popup agrupado

This commit is contained in:
2026-08-16 21:27:49 -05:00
parent e286424919
commit 4641439454
2 changed files with 11 additions and 3 deletions

View File

@@ -215,7 +215,10 @@
name.className = 'provenance-popup-name'
name.textContent = item.product.name
row.appendChild(name)
row.addEventListener('click', () => onItemClick(item))
row.addEventListener('click', event => {
event.stopPropagation()
onItemClick(item)
})
container.appendChild(row)
})
return container