Nico Hoffmann ෴.

Results 819 comments of Nico Hoffmann ෴.

@bastianallgeier could we create a similar thing to ArrayInput with a mixin that provides most of the validate methods etc. and relies on a computed prop `input()` e.g. that points...

@bastianallgeier That's what I've already been doing with many recent PRs. They all came from this. For me this PR is a good progress bar to see what we still...

@bastianallgeier I think the crucial part here is to decide if the use of `novalidate` here is correct

Permalinks could gain that we optionally add the language code at the end `@/page/dojfppdz/de` and then redirect to the right language. And then the link field would need to support...

@lukasbestle What do you think of this idea to add language support to permalinks? Or do you have another idea?

Could also be `?lang=de` but I'd think that could have the same problem.

@vibellio @tobimori Is this a regression of v4? My understanding was that this issue exits for 3.9 as well

@dviate doesn't help if we rush this and then are stuck with something dysfunctional. I get that it can be frustrating when you want this solved for your project, but...

@tobimori and that one just runs a regex on `/@/page/myUUID` patterns and replaces it with the resolved normal URL with current language? Gotta say, I have sympathy for such a...

```php /** * Converts permalinks in the field value to absolute urls */ 'toResolvedUrls' => function (Field $field): Field { if ($field->isNotEmpty() === true) { $field->value = preg_replace_callback("$\/@\/(page|file)\/([^'\"]+)$", function ($matches)...