Skip to content

Commit

Permalink
expoert csv fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
formsdev committed Sep 18, 2023
1 parent 6ead953 commit e92e374
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Service/Forms/FormSubmissionFormatter.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public function getCleanKeyValue()

// If hide hidden fields
if (!$this->showHiddenFields) {
if (FormLogicPropertyResolver::isHidden($field, $this->idFormData)) {
if (FormLogicPropertyResolver::isHidden($field, $this->idFormData ?? [])) {
continue;
}
}
Expand Down

0 comments on commit e92e374

Please sign in to comment.