We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 27f848b + 1f2c96a commit 29f0787Copy full SHA for 29f0787
Classes/Domain/Model/Changes/Property.php
@@ -184,6 +184,8 @@ public function canApply()
184
if (!\is_array($validatorConfiguration)) {
185
$validatorConfiguration = [];
186
}
187
+ // Fixes "Unsupported validation option(s) found: validationErrorMessage" by omitting this option https://github.com/neos/neos-ui/issues/3691
188
+ unset($validatorConfiguration['validationErrorMessage']);
189
if ($this->nodePropertyValidationService->validate($this->value, $validatorName, $validatorConfiguration) === false) {
190
return false;
191
0 commit comments