Skip to content

Commit b992abd

Browse files
author
cg33
committed
Fix: version differencec
1 parent e9d8cf1 commit b992abd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/admin/controller/show.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,13 +156,13 @@ func Export(ctx *context.Context) {
156156
}
157157

158158
for key, head := range panelInfo.Thead {
159-
_ = f.SetCellValue(tableName, orders[key]+"1", head["head"])
159+
f.SetCellValue(tableName, orders[key]+"1", head["head"])
160160
}
161161

162162
count := 2
163163
for _, info := range panelInfo.InfoList {
164164
for key, head := range panelInfo.Thead {
165-
_ = f.SetCellValue(tableName, orders[key]+strconv.Itoa(count), info[head["head"]])
165+
f.SetCellValue(tableName, orders[key]+strconv.Itoa(count), info[head["head"]])
166166
}
167167
count++
168168
}

0 commit comments

Comments
 (0)