From 01b23a3e88de952958ed41ec45682139ca24a71c Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Fri, 22 Nov 2024 12:28:58 -0500 Subject: [PATCH] Update src/components/tab/tab.ts Co-authored-by: Lea Verou --- src/components/tab/tab.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/tab/tab.ts b/src/components/tab/tab.ts index 3bf5eb3be..d6a29e3cc 100644 --- a/src/components/tab/tab.ts +++ b/src/components/tab/tab.ts @@ -26,7 +26,7 @@ let id = 0; @customElement('wa-tab') export default class WaTab extends WebAwesomeElement { static styles: CSSResultGroup = [componentStyles, styles]; - public slot = 'nav'; + public slot = 'nav'; // Auto-slot into nav slot private readonly attrId = ++id; private readonly componentId = `wa-tab-${this.attrId}`;