From f7d29bb5c37163649becb3d85d1d8a48faa7de91 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Sep 2024 00:30:44 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20=E6=94=B9=E8=BF=9B=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=E6=A0=B7=E5=BC=8F=20(#40)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- apitable.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/apitable.go b/apitable.go index f2536b7..afe1ed1 100644 --- a/apitable.go +++ b/apitable.go @@ -212,17 +212,11 @@ type APITableBorderColors struct { } func (tbc *APITableBorderColors) applyDefault() { - tbcR := reflect.ValueOf(tbc).Elem() for i := 0; i < tbcR.NumField(); i++ { - if tbcR.Field(i).IsZero() { - tbcR.Field(i).SetString("#000000") - } - } - }