Tabs Component Breaks when Nav Type 'underline' selected

When using the tab component, if underline is selected as the nav type, then the navigation no longer works.

@martin, it looks like the component is generating the following:

data-bs-toggle="underline"  

rather than:

data-bs-toggle="tab"  
1 Like

Thank you for the report! I can confirm the issue. We will fix this in our update later this month.

For now the only workaround is to add the correct attribute to the Link component inside each Tab:

data-bs-toggle="tab"

This will overwrite the incorrect value that Bootstrap Studio sets and the tabs will work again.