We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9d8cf1 commit b992abdCopy full SHA for b992abd
plugins/admin/controller/show.go
@@ -156,13 +156,13 @@ func Export(ctx *context.Context) {
156
}
157
158
for key, head := range panelInfo.Thead {
159
- _ = f.SetCellValue(tableName, orders[key]+"1", head["head"])
+ f.SetCellValue(tableName, orders[key]+"1", head["head"])
160
161
162
count := 2
163
for _, info := range panelInfo.InfoList {
164
165
- _ = f.SetCellValue(tableName, orders[key]+strconv.Itoa(count), info[head["head"]])
+ f.SetCellValue(tableName, orders[key]+strconv.Itoa(count), info[head["head"]])
166
167
count++
168
0 commit comments