fix bad type

This commit is contained in:
Cory LaViska
2021-06-28 09:25:47 -04:00
parent 6883851866
commit cc7ab8f7c4

View File

@@ -22,7 +22,7 @@ export default class SlTabPanel extends LitElement {
@property() name: string = '';
/** When true, the tab panel will be shown. */
@property({ type: Boolean, reflect: true }) active: false = false;
@property({ type: Boolean, reflect: true }) active: boolean = false;
connectedCallback() {
super.connectedCallback();