Georges.L
Georges.L
I don't know why is this failing, can you fix it @javiereguiluz I gave you right to edit it :)
The linter is annoying me I don't know why since my code is fine :(
@javiereguiluz can you take a look on this one please ?
I might come late, but here's my 2cts. ```php public function configureFields(string $pageName): iterable { return [ CollectionField::new('child') ->addJsFiles(Asset::fromEasyAdminAssetPackage('field-image.js')->onlyOnForms()) ->addJsFiles(Asset::fromEasyAdminAssetPackage('field-file-upload.js')->onlyOnForms()) ->useEntryCrudForm() ]; } ``` (Don't forget namespace imports)
@dwd-akira Simple solution: Override `vendor/easycorp/easyadmin-bundle/src/Resources/views/crud/form_theme.html.twig`: Look for `{% set allows_deleting_items = form_parent(form).vars.allow_delete|default(false) %}` and replace it by: `{% set allows_deleting_items = form_parent(form).vars.allow_delete|default(false) or value is null %}` See: ```twig {%...
Unfortunately @javiereguiluz looks very busy atm, I'm afraid he's not concerned for minor issues right now and focusing only on blocking issue of EA :(
A temporary CSS workaround is to trick the editor to limit user interaction and emulate a read only field: ```css textarea.ea-text-editor-content[disabled] + .ea-text-editor-wrapper { pointer-events: none; filter: contrast(75%); opacity: 0.8;...
Max limit has been set to avoid memory limit/timeout issues. It is on purpose and should be used on small to medium projects only. This method is not intended for...
> And 9999 cache keys are not that many. It starts getting a very high amount of object in the pool of phpfastcahe, so yes I fixed an arbitrary limit...
> The Redis driver's function to read all keys has been streamlined. Where did you see that ? From which version ? Backward compatibility **must be ensured** if this is...