Skip to content

Commit

Permalink
Added space after comma in File Attribute __toString()
Browse files Browse the repository at this point in the history
  • Loading branch information
maurice-ellis committed Aug 5, 2024
1 parent 4b38a73 commit 231b020
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/FieldTypes/File.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function __construct($value = null)
public function __toString()
{
if (is_array($this->getValue())) {
return implode(",", $this->getValue());
return implode(", ", $this->getValue());
}

return $this->getValue() ?? "";
Expand Down

0 comments on commit 231b020

Please sign in to comment.