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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 3 deletions

View File

@ -85,9 +85,6 @@ class Worksheet extends WriterPart
// conditionalFormatting // conditionalFormatting
$this->writeConditionalFormatting($objWriter, $worksheet); $this->writeConditionalFormatting($objWriter, $worksheet);
// dataValidations
$this->writeDataValidations($objWriter, $worksheet);
// hyperlinks // hyperlinks
$this->writeHyperlinks($objWriter, $worksheet); $this->writeHyperlinks($objWriter, $worksheet);