fix(select): wrap the text for the message in a popover

This commit is contained in:
Brandy Carney
2018-04-04 13:00:45 -04:00
parent 219589598d
commit 0a0959b3a7

View File

@@ -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 }