Thomas Kratz

Results 57 comments of Thomas Kratz

Thanks for your engagement. I still hope that someday in a far future I can use this in my devcontainers....

I see a lot of similar errors with picocss in Angular 17.2. For the moment I set "inlineCritical": false to have a working build.

That way one would need to lookup both components. I worked around with a helper ``` _get { text = "Logfiles" }._menuBarClick() ``` That helper does not check anything, so...

> Alternatively I can implement `menuBar._click(MenuItem)`. That would help in some places!

I have this little snippet in my mock vaadin setup: ``` kotlin val request = VaadinServletRequest.getCurrent().request as MockRequest val authentication = SecurityContextHolder.getContext().authentication if(authentication!=null && authentication.isAuthenticated){ request.userPrincipalInt = authentication.principal as Principal...

For my use cases this works already pretty well when I set up the MockMvcWebTestClient with the filter. But I use only a small subset of RestDocs. This is what...

I see it work from the webapp folder. But this seems inconsistent in Vaadin 14 Spring Boot app as we usually do not have suche a folder there.

I see the same issue here. But my handler and the #[derive(OpenApi)] are in the same module, so I do not need to import. In the generated spec I see...

Solved it: Had to import the classes for nest() the same way as described in https://github.com/juhaku/utoipa/issues/955#issuecomment-2155553055