Dropdown to setup sync now opens the correct workspace settings tab

This commit is contained in:
Gregory Schier
2025-11-06 05:13:18 -08:00
parent 53aea914ac
commit cd3530f598
2 changed files with 2 additions and 2 deletions

View File

@@ -343,7 +343,7 @@ function SetupSyncDropdown({ workspaceMeta }: { workspaceMeta: WorkspaceMeta })
color: 'success',
label: 'Open Workspace Settings',
leftSlot: <Icon icon="settings" />,
onSelect: () => openWorkspaceSettings('general'),
onSelect: () => openWorkspaceSettings('data'),
},
{ type: 'separator' },
{

View File

@@ -73,7 +73,7 @@ export function WorkspaceSettingsDialog({ workspaceId, hide, tab }: Props) {
{ value: TAB_GENERAL, label: 'General' },
{
value: TAB_DATA,
label: 'Directory Sync',
label: 'Data',
},
...headersTab,
...authTab,