diff options
author | william <willy.xiao1989@gmail.com> | 2021-05-24 15:27:36 +0800 |
---|---|---|
committer | william <willy.xiao1989@gmail.com> | 2021-05-24 15:27:36 +0800 |
commit | 2f74ec171d8c42367666014fa661eab26f088e68 (patch) | |
tree | 60ec1d28080ae2be73ea61963522e1b8eccbaa31 /xmlWorksheet.go | |
parent | 5bf3ea61547df2a36757f14bfba47bf22b747079 (diff) |
fix the bug when there was no count attribute in sharedStrings file
Diffstat (limited to 'xmlWorksheet.go')
-rw-r--r-- | xmlWorksheet.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmlWorksheet.go b/xmlWorksheet.go index 438e900..82ac395 100644 --- a/xmlWorksheet.go +++ b/xmlWorksheet.go @@ -248,9 +248,9 @@ type xlsxSheetPr struct { // adjust the direction of grouper controls. type xlsxOutlinePr struct { ApplyStyles *bool `xml:"applyStyles,attr"` - SummaryBelow bool `xml:"summaryBelow,attr,omitempty"` - SummaryRight bool `xml:"summaryRight,attr,omitempty"` - ShowOutlineSymbols bool `xml:"showOutlineSymbols,attr,omitempty"` + SummaryBelow bool `xml:"summaryBelow,attr"` + SummaryRight bool `xml:"summaryRight,attr"` + ShowOutlineSymbols bool `xml:"showOutlineSymbols,attr"` } // xlsxPageSetUpPr expresses page setup properties of the worksheet. |