crp87 - I have a field called "contentimage". I...
# ❓questions
k
Do you have crops defined for that field? It seems that is missing
c
Yes @kalle I defined them in the corresponding model:
Copy code
public $mediaParams = [
        'content_image' => [
            'default' => [
                [
                    'name' => 'default',
                    'ratio' => 16 / 9,
                ],
            ],
            'mobile' => [
                [
                    'name' => 'landscape',
                    'ratio' => 16 / 9,
                ],
            ],
        ],
    ];
but also without this definition the error appears
ok, i forgot an ``s`` in $mediasParams. Thanks!