From 04a472d20470f71219dd6913daf2dc0632f2ac48 Mon Sep 17 00:00:00 2001 From: Christian Date: Tue, 27 Jan 2026 08:36:32 +0100 Subject: [PATCH] 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 --- VERSION | 2 +- app/customers/frontend/customer_detail.html | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/VERSION b/VERSION index 4737f4e..968c853 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.3.147 \ No newline at end of file +1.3.148 \ No newline at end of file diff --git a/app/customers/frontend/customer_detail.html b/app/customers/frontend/customer_detail.html index 49090d2..930b20e 100644 --- a/app/customers/frontend/customer_detail.html +++ b/app/customers/frontend/customer_detail.html @@ -2317,10 +2317,6 @@ function renderBillingMatrix(matrix) { `; }).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) {