Resolve #377, avoid empty column in GetRows result

formula
xuri 6 years ago
parent eca66180f1
commit 4e7d93a777
No known key found for this signature in database
GPG Key ID: BA5E5BB1C948EDF7

@ -54,7 +54,7 @@ func (f *File) GetRows(sheet string) ([][]string, error) {
}
rows := make([][]string, rowCount)
for i := range rows {
rows[i] = make([]string, colCount+1)
rows[i] = make([]string, colCount)
}
var row int

Loading…
Cancel
Save