Hi All
I have an issue with the languageselector in the event portal
Can someone check if this happens also in the OOB eventportal
When I select a language in the dropdown when you are at an event page it is redirecting to home
I have looked at the liquid code of the template and it is this code wich is the issue
<a _ngcontent-phm-c1="" class="dropdown-item" href="#">

In the template we see in the code the following
<ul class='navbar-nav ml-auto'>
<li class="nav-item dropdown text-nowrap" *ngIf="showLanguageDropdown">
<a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" id="languages-dropdown" role="button">
<span [appTranslate]="'ChangeLanguage'">Change Language</span>
</a>
<ul class="dropdown-menu dropdown-menu-right pre-scrollable">
<li class='nav-item' (click)="supportedLanguageChanged(supportedLanguage.lcid);" *ngFor="let supportedLanguage of supportedLanguages$ | async" >
<a class="dropdown-item" href="#">
<span>{{supportedLanguage.label}}</span>
</a>
</li>
</ul>
</li>
support is now saying we did change someting but we did not
Has someone a suggestion how we can Fix this ?