We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My simple form looks like this:
final class ContentType extends AbstractType { private RouterInterface $router; public function buildForm(FormBuilderInterface $builder, array $options): void { $builder->add('content', CKEditorType::class, [ 'label' => 'Treść', 'constraints' => [new NotBlank()], 'config' => [ 'filebrowserUploadHandler' => $this->router->generate('upload') ] ]); } }
If I want to paste svg image in base64 format, I am getting the following error in dev tool:
Uncaught TypeError: Cannot read property '1' of null
If I remove filebrowserUploadHandler parameter from my ContentType everything works fine, the base64 image is pasted normally.
filebrowserUploadHandler
ContentType
Does anyone have any idea what happens?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
My simple form looks like this:
If I want to paste svg image in base64 format, I am getting the following error in dev tool:
If I remove
filebrowserUploadHandler
parameter from myContentType
everything works fine, the base64 image is pasted normally.Does anyone have any idea what happens?
The text was updated successfully, but these errors were encountered: