diff options
author | xuri <xuri.me@gmail.com> | 2021-07-29 00:03:57 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2021-07-29 00:03:57 +0800 |
commit | 7dbf88f221f278075d4ff9e153b21236d0826c33 (patch) | |
tree | 508e171a8702bb52f017239d1f210cad076c19c4 /xmlWorksheet.go | |
parent | e9ae9b45b20a5df7e3aa15afcfac83ecb13394c6 (diff) |
This closes #971, closes #972 and closes #974
- Escape XML character in the drop list
- Fix incorrect character count limit in the drop list
- Fix Excel time parse issue in some case
- Fix custom number format month parse issue in some case
- Fix corrupted file generated caused by concurrency adding pictures
Diffstat (limited to 'xmlWorksheet.go')
-rw-r--r-- | xmlWorksheet.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmlWorksheet.go b/xmlWorksheet.go index 4499546..a54d51b 100644 --- a/xmlWorksheet.go +++ b/xmlWorksheet.go @@ -436,8 +436,8 @@ type DataValidation struct { ShowInputMessage bool `xml:"showInputMessage,attr,omitempty"` Sqref string `xml:"sqref,attr"` Type string `xml:"type,attr,omitempty"` - Formula1 string `xml:",innerxml"` - Formula2 string `xml:",innerxml"` + Formula1 string `xml:"formula1,omitempty"` + Formula2 string `xml:"formula2,omitempty"` } // xlsxC collection represents a cell in the worksheet. Information about the |