Skip to content

Commit 4a933f5

Browse files
link to connection table in repos carousel
1 parent cde785a commit 4a933f5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/web/src/app/[domain]/components/repositoryCarousel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export function RepositoryCarousel({
3737
<span className="text-sm text-muted-foreground">
3838
<>
3939
Create a{" "}
40-
<Link href={`https://docs.sourcebot.dev/docs/connections/overview`} className="text-blue-500 hover:underline inline-flex items-center gap-1">
40+
<Link href={`/${domain}/settings/connections`} className="text-blue-500 hover:underline inline-flex items-center gap-1">
4141
connection
4242
</Link>{" "}
4343
to start indexing repositories

packages/web/src/app/[domain]/settings/connections/[id]/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ export default async function ConnectionDetailPage(props: ConnectionDetailPagePr
140140
</CardTitle>
141141
</CardHeader>
142142
<CardContent>
143-
{connection.syncedAt ? <DisplayDate date={connection.syncedAt} className="text-2xl font-semibold" /> : "Never"}
143+
<span className="text-2xl font-semibold">{connection.syncedAt ? <DisplayDate date={connection.syncedAt} /> : "Never"}</span>
144144
</CardContent>
145145
</Card>
146146

@@ -153,7 +153,7 @@ export default async function ConnectionDetailPage(props: ConnectionDetailPagePr
153153
<Info className="h-3.5 w-3.5 text-muted-foreground cursor-help" />
154154
</TooltipTrigger>
155155
<TooltipContent>
156-
<p>When the next sync job is scheduled to run</p>
156+
<p>When the connection will be resynced next. Modifying the config will also trigger a resync.</p>
157157
</TooltipContent>
158158
</Tooltip>
159159
</CardTitle>

0 commit comments

Comments
 (0)