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 4025098 commit e797ca0Copy full SHA for e797ca0
packages/vue/src/components/IonTabBar.ts
@@ -152,7 +152,9 @@ export const IonTabBar = defineComponent({
152
const tabKeys = Object.keys(tabs);
153
let activeTab = tabKeys.find((key) => {
154
const href = tabs[key].originalHref;
155
- return currentRoute?.pathname && matchesTab(currentRoute.pathname, href);
+ return (
156
+ currentRoute?.pathname && matchesTab(currentRoute.pathname, href)
157
+ );
158
});
159
160
/**
0 commit comments