From cc8c79fe3dba908321c4e31206db8efab890769c Mon Sep 17 00:00:00 2001 From: Zeni Kim Date: Thu, 27 Mar 2025 12:19:18 -0500 Subject: [PATCH] add img and class to table template --- template/components/content_table.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/template/components/content_table.go b/template/components/content_table.go index eb0199e..5c6a21b 100644 --- a/template/components/content_table.go +++ b/template/components/content_table.go @@ -9,13 +9,13 @@ type ContentTable struct { } type ContentTableTH struct { - ID string - ValueType string // -> default string, href, badge, list, checkbox - Value string - ValueClass string + ID string + ValueType string // -> default string, href, badge, list, checkbox + Value string } type ContentTableTD struct { - ID string - Value interface{} // string or component struct according ValueType + ID string + Value interface{} // string or component struct according ValueType + ValueClass string }