v0.0.502
Some checks failed
Build Docker and Deploy / Run goext test-suite (push) Has been cancelled

This commit is contained in:
Mike Schwörer 2024-08-07 19:35:23 +02:00
parent a8e6f98a89
commit a3481a7d2d
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
package goext
const GoextVersion = "0.0.501"
const GoextVersion = "0.0.502"
const GoextVersionTimestamp = "2024-08-07T19:31:36+0200"
const GoextVersionTimestamp = "2024-08-07T19:35:23+0200"

View File

@ -53,8 +53,8 @@ func (b *TableBuilder) Widths(v ...string) *TableBuilder {
return b
}
func (b *TableBuilder) DefaultStyle(s TableCellStyleOpt) *TableBuilder {
b.defaultCellStyle = &s
func (b *TableBuilder) DefaultStyle(s *TableCellStyleOpt) *TableBuilder {
b.defaultCellStyle = s
return b
}