This commit is contained in:
Mateusz Gruszczyński
2025-08-16 13:33:53 +02:00
parent a3bf47ecc3
commit 0187f1d654
2 changed files with 11 additions and 1 deletions

View File

@@ -81,9 +81,16 @@ document.addEventListener('DOMContentLoaded', function () {
}
offset += limit;
if (productCountDisplay) {
productCountDisplay.textContent = `Wyświetlono ${allProducts.length} produktów.`;
}
const statsEl = document.getElementById('massAddProductStats');
if (statsEl) {
statsEl.textContent = `(${allProducts.length} z ${data.total_count})`;
}
} catch (err) {
const loadingEl = productList.querySelector('.loading');
if (loadingEl) loadingEl.remove();