v0.0.554
Some checks failed
Build Docker and Deploy / Run goext test-suite (push) Has been cancelled
Some checks failed
Build Docker and Deploy / Run goext test-suite (push) Has been cancelled
This commit is contained in:
@@ -120,7 +120,12 @@ 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).Any("cells", dat.cells).Any("colWidths", b.columnWidths).Build())
|
||||
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 })).
|
||||
Any("colWidths", b.columnWidths).
|
||||
Build()
|
||||
builder.FPDF().SetError(err)
|
||||
return
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user