Skip to content

Commit

Permalink
fix(select): wrap the text for the message in a popover
Browse files Browse the repository at this point in the history
  • Loading branch information
brandyscarney committed Apr 4, 2018
1 parent 2195895 commit 0a0959b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/components/select-popover/select-popover.tsx
Expand Up @@ -37,7 +37,7 @@ export class SelectPopover {
<ion-list no-lines={this.mode === 'md'}>
{ this.header ? <ion-list-header>{this.header}</ion-list-header> : null }
{ this.subHeader || this.message
? <ion-item>
? <ion-item text-wrap>
<ion-label>
{ this.subHeader ? <h3>{this.subHeader}</h3> : null }
{ this.message ? <p>{this.message}</p> : null }
Expand Down

0 comments on commit 0a0959b

Please sign in to comment.