We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b414983 commit e302db3Copy full SHA for e302db3
src/BootstrapBlazor/Components/Tab/Tab.razor.js
@@ -56,6 +56,9 @@ const active = tab => {
56
resize(tab)
57
58
const activeTab = tab.tabNav.querySelector('.tabs-item-wrap.active')
59
+ if (activeTab === null) {
60
+ return
61
+ }
62
if (activeTab) {
63
if (tab.vertical) {
64
const top = getPosition(activeTab).top - getPosition(activeTab.parentNode).top + activeTab.offsetHeight
0 commit comments