Sonarqube flagged an issue with the following line of code:
<div class="dropdown-language">
<label>{{'GENERALE.LINGUA' | translate }}</label>
<select #langSelect (change)="translate.use(langSelect.value)" class="lang-style" id="language"> ---> **HERE**
<option *ngFor="let lang of translate.getLangs()" [value]="lang" [selected]="lang === translate.currentLang">{{ lang }}</option>
</select>
</div>
I am having trouble identifying the issue in this portion of the code