Browse Source

Merge branch 'develop' of https://github.com/nocodb/nocodb into develop

pull/3162/head
Wing-Kam Wong 2 years ago
parent
commit
d29cce7ad7
  1. 4
      packages/nc-gui-v2/composables/useTabs.ts

4
packages/nc-gui-v2/composables/useTabs.ts

@ -53,8 +53,8 @@ export function useTabs() {
} else if ((route.name as string)?.startsWith('nc-projectId-index-index-auth')) { } else if ((route.name as string)?.startsWith('nc-projectId-index-index-auth')) {
return tabs.value.findIndex((t) => t.type === 'auth') return tabs.value.findIndex((t) => t.type === 'auth')
} }
// by default, it's showing Team & Auth
return -1 return 0
}, },
set(index: number) { set(index: number) {
if (index === -1) { if (index === -1) {

Loading…
Cancel
Save