From 7ba7d86023890ca1079767f7b8e5ee216683383c Mon Sep 17 00:00:00 2001 From: tom wible Date: Fri, 23 Feb 2024 11:17:26 -0500 Subject: [PATCH] fix numLeadingBlanks colspan extra injected before payload in renderRowFooterTemplate output, pushing desired off 1 column to right --- js/list.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/list.js b/js/list.js index 7b6ab8b0..98eae563 100644 --- a/js/list.js +++ b/js/list.js @@ -36,6 +36,7 @@ if ( !foundFirstNonBlank){ foundFirstNonBlank = true; if ( numLeadingBlanks > 0 ){ + numLeadingBlanks -= 1; if (label ){ $(footRow).append($('').attr('colspan', numLeadingBlanks).text(label)); } else {