Fix Xlsx Writer Data Validation (#2369)

Fix issue #2368. PR #2265 moved the place where data validations were written to the worksheet. PR #1694 was installed afterwards, and accidentally restored the original location, so validations are now being written twice.
This commit is contained in:
oleibman
2021-11-03 08:05:16 -07:00
committed by GitHub
parent ca5bd9b1d3
commit da5c2b1c22
@@ -85,9 +85,6 @@ class Worksheet extends WriterPart
// conditionalFormatting
$this->writeConditionalFormatting($objWriter, $worksheet);
// dataValidations
$this->writeDataValidations($objWriter, $worksheet);
// hyperlinks
$this->writeHyperlinks($objWriter, $worksheet);