mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 19:57:22 +08:00
style(components): don't self close slot tags
This commit is contained in:
@ -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>
|
||||
];
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user