Skip to content

Commit

Permalink
Merge pull request #8 from Ehyiah/fix_custom_uploader
Browse files Browse the repository at this point in the history
fix default value
  • Loading branch information
Ehyiah authored Jul 1, 2023
2 parents 8774efa + 26a89b9 commit 4ebba36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Form/QuillType.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function configureOptions(OptionsResolver $resolver)
'path' => null,
]);
$spoolResolver->setAllowedTypes('type', ['string', 'null']);
$spoolResolver->setAllowedTypes('path', ['string']);
$spoolResolver->setAllowedTypes('path', ['string', 'null']);
$spoolResolver->setAllowedValues('type', ['json', 'form', null]);
})
;
Expand Down

0 comments on commit 4ebba36

Please sign in to comment.