From 3bf2f0d9e914219886d171ce2ada72144f1ded72 Mon Sep 17 00:00:00 2001 From: Naveen Mahalingam Date: Thu, 4 Jan 2024 09:11:49 -0800 Subject: [PATCH] try possible fix --- table/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/table/config.go b/table/config.go index 23d54f3..fb96d70 100644 --- a/table/config.go +++ b/table/config.go @@ -71,7 +71,7 @@ type ColumnConfig struct { } func (c ColumnConfig) getWidthMaxEnforcer() WidthEnforcer { - if c.WidthMax == 0 { + if c.WidthMax <= 0 { return widthEnforcerNone } if c.WidthMaxEnforcer != nil {