Bug #93615
openIt is not possible to alter the default cropVariants without copy-pasting them first
0%
Description
No matter if via TSconfig or via TCA, if you just TCA override or overrideChildTca
and do for example something like this (no matter if one a shipped core field or on a custom file relation field)
cropVariants { default { NaN { disabled = 1 } selectedRatio = 16:9 } }
Then the Backend throws an exception because there's no translation key found. This is because the default fallback configuration is not loaded if any custom crop configuration is present:
Above configuration is a fallback if no other more specific configuration has been given.
But I want to alter this exact default configuration WITHOUT having to actually copy paste it first.
Why doesn't sys_file_reference.crop
ship this fallback directly via TCA, but is instead loaded dynamically on runtime (and thus not overridable, forcing people to ugly copy-paste it first)?