v0.0.553
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 3m24s

This commit is contained in:
2025-01-09 10:29:22 +01:00
parent d009aafd4e
commit eef12da4e6
4 changed files with 21 additions and 9 deletions

View File

@@ -120,7 +120,7 @@ func (b *TableBuilder) Build() {
for i, dat := range b.rows {
if len(dat.cells) != columnCount {
builder.FPDF().SetError(exerr.New(exerr.TypeInternal, "data must have the same length as header").Int("idx", i).Build())
builder.FPDF().SetError(exerr.New(exerr.TypeInternal, "data must have the same length as header").Int("idx", i).Any("cells", dat.cells).Any("colWidths", b.columnWidths).Build())
return
}
}