style(components): don't self close slot tags

This commit is contained in:
Brandy Carney
2018-07-11 11:48:41 -04:00
parent f6ab5b69ac
commit 02a0b6e5fe
4 changed files with 7 additions and 7 deletions

View File

@ -335,7 +335,7 @@ export class Range implements BaseInput {
}
return [
<slot name="start" />,
<slot name="start"></slot>,
<ion-gesture
disableScroll={true}
onStart={this.onDragStart.bind(this)}
@ -391,7 +391,7 @@ export class Range implements BaseInput {
)}
</div>
</ion-gesture>,
<slot name="end" />
<slot name="end"></slot>
];
}
}