After submitted Login I see an Icon instead of the Landing page

Hey there,

in my Main View I’ve added a footer to the drawer which shall show a clickable Version number.
That footer I fill with a Horizontal Layout where I add an icon and a String.

release.add(LineAwesomeIcon.FILE_ALT.create());|
release.add(Version  + version);|

After submitting my logion data I now land here everytime:

localhost:8085/line-awesome/svg/file-alt.svg?continue

When I use
release.add(VaadinIcon.FILE_TEXT_O.create());
I do land directly at the “Home” View where it should go.

I am using Vaadin Flow 24.5.4, Java 21 and Spring Boot 33.5

Any ideas? Can it have to do something with Spring Boot Security?
I have no clue yet :slight_smile:

Cheers
Mojo

Hmmm seems I found a / the solution…

I have added
http.authorizeHttpRequests(authorize -> authorize.requestMatchers(new AntPathRequestMatcher("/line-awesome/**")).permitAll());
to my SpringSecurity, cleared browsers cache and it seems to be fine!

I wasn’t aware of that line-awesome path at all, found it “by accident” at stackowerflow.

Cheers
Mojo