fix: Remove undefined matrixHtml reference

v1.3.148:
- Fixed JavaScript error: matrixHtml is not defined
- Removed duplicate table population code
- bodyRows.innerHTML already contains the matrix HTML
This commit is contained in:
Christian 2026-01-27 08:36:32 +01:00
parent 41716ba683
commit 04a472d204
2 changed files with 1 additions and 5 deletions

View File

@ -1 +1 @@
1.3.147
1.3.148

View File

@ -2317,10 +2317,6 @@ function renderBillingMatrix(matrix) {
</tr>`;
}).join('');
// Populate table body
const tableBody = document.getElementById('matrixBodyRows');
tableBody.innerHTML = matrixHtml;
// Show search container if there are products
const searchContainer = document.getElementById('matrixSearchContainer');
if (matrix.products.length > 0) {