Skip to content
This repository has been archived by the owner on Nov 8, 2022. It is now read-only.

Commit

Permalink
fix: give the team selector a whole row
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Reed committed Sep 17, 2020
1 parent 74ca80f commit 485d4f0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/settings/settings.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,13 @@ <h3>Teams</h3>
</ion-list-header>
<ion-item id="bl-team-selector">
<ion-label class="ion-text-wrap">
<ion-label slot="start">
<ion-label>
<h4>Choose Your Team:</h4>
</ion-label>
<ion-note>Your team is first in the live feed.</ion-note>
</ion-label>
</ion-item>
<ion-item>
<ion-select class="ion-text-wrap" (ionChange)="setFavoriteTeam($event.detail)" interface="action-sheet" [interfaceOptions]="teamOptions" okText="Choose" cancelText="Cancel" [value]="current.favoriteTeam" [(ngModel)]="current.favoriteTeam">
<ion-select-option *ngFor="let team of teams; trackBy: id" [value]="team.id">{{team.fullName}}</ion-select-option>
</ion-select>
Expand Down

0 comments on commit 485d4f0

Please sign in to comment.