Merge pull request #1358 from jleyva/MOBILE-2431
MOBILE-2431 signup: Remove popover interface for countrymain
commit
83c5465ca5
|
@ -29,7 +29,7 @@
|
|||
|
||||
<ion-item text-wrap>
|
||||
<ion-label stacked core-mark-required="true">{{ 'core.wheredoyoulive' | translate }}</ion-label>
|
||||
<ion-select name="country" formControlName="country" interface="popover">
|
||||
<ion-select name="country" formControlName="country">
|
||||
<ion-option value="">{{ 'core.login.selectacountry' | translate }}</ion-option>
|
||||
<ion-option *ngFor="let key of countriesKeys" [value]="key">{{countries[key]}}</ion-option>
|
||||
</ion-select>
|
||||
|
@ -101,7 +101,7 @@
|
|||
</ion-item>
|
||||
<ion-item text-wrap>
|
||||
<ion-label stacked id="core-login-signup-country">{{ 'core.user.country' | translate }}</ion-label>
|
||||
<ion-select name="country" formControlName="country" aria-labelledby="core-login-signup-country" interface="popover">
|
||||
<ion-select name="country" formControlName="country" aria-labelledby="core-login-signup-country">
|
||||
<ion-option value="">{{ 'core.login.selectacountry' | translate }}</ion-option>
|
||||
<ion-option *ngFor="let key of countriesKeys" [value]="key">{{countries[key]}}</ion-option>
|
||||
</ion-select>
|
||||
|
|
Loading…
Reference in New Issue