Results 8 comments of Falko Schumann

Same problem with `gradle jshint`.

As workaround, remove javafx-gradle-plugin and add JavaFX manually: ``` def openjfxGroup = 'org.openjfx' def openjfxVersion = '15.0.1' def osName = System.properties['os.name'].toLowerCase() def openjfxPlatform = osName.contains('mac') ? 'mac' : osName.contains('win') ?...

I solve this problem with [NamedSize](https://learn.microsoft.com/de-de/dotnet/api/microsoft.maui.controls.namedsize?view=net-maui-6.0) as font size of controls. But the enum is deprecated, so it is not a permanent solution.

Meine Redakteure können die Startseite nicht bearbeiten. Dafür ist bei der entsprechenden Benutzergruppe unter "Pagemounts" -> "Erlaubte Seitentypen" der Punkt "Startpunkt einer Webseite" nicht ausgewählt. Damit sind in der Seitenstruktur...

Stimmt halb, das Icon kann der Redakteur anklicken und es sieht im Backend so aus als ob der Status der Veröffentlichung der Startseite auch geändert wird. Im Frontend ändert sich...

@pedrodurek Setting `allowObjectInHTMLChildren` to `true` works for me. Thanks. What is the reason why it is not true by default? Are there any disadvantages?

@BrooceLR I tested this, `allowObjectInHTMLChildren` works like disabling the TypeScript warning globally. It suppresses warnings in all JSX. So this is not a good solution.