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

@ -66,12 +66,12 @@ export class ItemOption {
onClick={this.clickedOptionButton.bind(this)}
>
<span class="item-option-button-inner">
<slot name="start" />
<slot name="start"></slot>
<slot name="top" />
<slot name="icon-only" />
<slot></slot>
<slot name="bottom" />
<slot name="end" />
<slot name="end"></slot>
</span>
</TagType>
);