🐛 fix: console error becasue button inside button
This commit is contained in:
parent
cfeb85f5c4
commit
0bcb7ca4d6
@ -61,6 +61,7 @@ export const tabsTheme = tv({
|
||||
'data-[orientation=horizontal]:focus-ring',
|
||||
// Vertical
|
||||
'data-[orientation=vertical]:gap-2',
|
||||
'data-[orientation=vertical]:justify-start',
|
||||
],
|
||||
triggerList: [
|
||||
'flex',
|
||||
|
@ -35,13 +35,15 @@ const TabsTrigger = forwardRef<
|
||||
// Disabled focus state for horizontal tabs
|
||||
tabIndex={orientation === 'horizontal' ? -1 : undefined}
|
||||
className={triggerWrapper({ className })}
|
||||
asChild
|
||||
{...props}
|
||||
>
|
||||
{/* Need to add button in the trigger children because there's focus state inside the children */}
|
||||
<button
|
||||
data-orientation={orientation}
|
||||
<button className={triggerWrapper({ className })}>
|
||||
<span
|
||||
// Disabled focus state for vertical tabs
|
||||
tabIndex={orientation === 'vertical' ? -1 : undefined}
|
||||
tabIndex={orientation === 'horizontal' ? 0 : -1}
|
||||
data-orientation={orientation}
|
||||
className={trigger()}
|
||||
>
|
||||
{/* Put the icon on the left of the text for veritcal tab */}
|
||||
@ -49,6 +51,7 @@ const TabsTrigger = forwardRef<
|
||||
{children}
|
||||
{/* Put the icon on the right of the text for horizontal tab */}
|
||||
{orientation === 'horizontal' && icon}
|
||||
</span>
|
||||
</button>
|
||||
</Trigger>
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user