Gleb Gorelov

Results 50 comments of Gleb Gorelov

Fixed in: https://github.com/jmix-framework/jmix/issues/4369

Check file encoding on your side, the file looks good for me: https://github.com/jmix-framework/jmix/blob/release_2_0/jmix-templates/content/project/composite-project/%24%7Bproject_name%7D-all/README.md?plain=1

Still looks good for me. Please, attach a full window screenshot, as I did, so the used encoding is shown.

Seems that it's Windows only problem

As a work around, add the following to the `LoginView`: ``` @Autowired private CurrentAuthentication currentAuthentication; @Override public void beforeEnter(BeforeEnterEvent event) { if (!(currentAuthentication.getAuthentication() instanceof AnonymousAuthenticationToken)) { event.rerouteTo(""); return; } super.beforeEnter(event);...

Possible solution: 1. Don't hide actions slot at all 2. An interface similar to `AdjustWhenReadOnlyView` is required, e.g. `AdjustWhenReadOnlyField`.

Probably it makes sense to set the `isInjectable` property for `@StudioElement` to `false` by default.

Relates to: https://github.com/jmix-framework/jmix/issues/4604