From a0a80899f55c3f3f95daf77697f65a7349346ac0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Schw=C3=B6rer?= Date: Thu, 9 Jan 2025 10:39:56 +0100 Subject: [PATCH] v0.0.555 --- goextVersion.go | 4 ++-- wpdf/wpdfTable.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/goextVersion.go b/goextVersion.go index b85ba3e..3d218cf 100644 --- a/goextVersion.go +++ b/goextVersion.go @@ -1,5 +1,5 @@ package goext -const GoextVersion = "0.0.554" +const GoextVersion = "0.0.555" -const GoextVersionTimestamp = "2025-01-09T10:39:31+0100" +const GoextVersionTimestamp = "2025-01-09T10:39:56+0100" diff --git a/wpdf/wpdfTable.go b/wpdf/wpdfTable.go index 40376e0..a8e576f 100644 --- a/wpdf/wpdfTable.go +++ b/wpdf/wpdfTable.go @@ -122,7 +122,7 @@ func (b *TableBuilder) Build() { if len(dat.cells) != columnCount { err := exerr.New(exerr.TypeInternal, "data must have the same length as header"). Int("idx", i). - Any("cells", langext.ArrMap(dat.cells, func(v TableCell) string { return v.Content })). + Strs("cells", langext.ArrMap(dat.cells, func(v TableCell) string { return v.Content })). Any("colWidths", b.columnWidths). Build() builder.FPDF().SetError(err)