-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Description
Prequisites
- I have read the Contributing Guidelines.
- I agree to follow the Code of Conduct.
- I have searched for existing issues that already report this problem, without success.
Ionic Framework Version
- v4.x
- v5.x
- v6.x
Current Behavior
ion-label not floating inside ion-item with select input on ion-modal dialog, label overlay the select field value.
Selecting a new value fix the overlay bug, however, it comes back reopening the dialog.
The bug not exists on modeless views.
Expected Behavior
Floating ion-label not overlay on select fields in both normal and ion.modal view.
Steps to Reproduce
Create a modal and open a modal with an ion-label with floating prop with an ion-select.
<ion-item> <ion-label color="primary" position="floating">Posizione </ion-label> <ion-select multiple="false" formControlName="nascSesso" [(ngModel)]="this.entita.Collaboratore.Anagrafica.NascSesso" [cancelText]="this.translateService.instant('component.select.cancelText')" ok-text="Ok"> <ion-select-option *ngFor="let item of this.tipoSesso | keys" [value]="item.key"> {{ 'Youpass.model.anagrafica.EnumSesso.' + item.value | translate }}</ion-select-option> </ion-select> </ion-item>
Code Reproduction URL
https://github.com/olaisen81/ion-label-issue
Ionic Info
Additional Information
No response