diff --git a/plugins/admin/controller/show.go b/plugins/admin/controller/show.go index a027688b0..956613b0b 100644 --- a/plugins/admin/controller/show.go +++ b/plugins/admin/controller/show.go @@ -156,13 +156,13 @@ func Export(ctx *context.Context) { } for key, head := range panelInfo.Thead { - _ = f.SetCellValue(tableName, orders[key]+"1", head["head"]) + f.SetCellValue(tableName, orders[key]+"1", head["head"]) } count := 2 for _, info := range panelInfo.InfoList { for key, head := range panelInfo.Thead { - _ = f.SetCellValue(tableName, orders[key]+strconv.Itoa(count), info[head["head"]]) + f.SetCellValue(tableName, orders[key]+strconv.Itoa(count), info[head["head"]]) } count++ }