docs(css): replace text-wrap directive with class (#19144)

This commit is contained in:
Matthew Harris
2019-08-27 02:27:00 +07:00
committed by Brandy Carney
parent c7b6c7d563
commit d4db3af881
11 changed files with 24 additions and 24 deletions

View File

@ -41,7 +41,7 @@ export class SelectPopover implements ComponentInterface {
{this.header !== undefined && <ion-list-header>{this.header}</ion-list-header>}
{ (this.subHeader !== undefined || this.message !== undefined) &&
<ion-item>
<ion-label text-wrap>
<ion-label class="ion-text-wrap">
{this.subHeader !== undefined && <h3>{this.subHeader}</h3>}
{this.message !== undefined && <p>{this.message}</p>}
</ion-label>