diff options
| author | Mohamed Bassem <me@mbassem.com> | 2026-02-04 14:02:05 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-04 14:02:05 +0000 |
| commit | e59fd98b43070898c594c35af1a0bbee604ad160 (patch) | |
| tree | 11239ffd3c5325a3d7a913e0b44fc70ae4cf8d31 /apps/web/components/settings/ImportSessionCard.tsx | |
| parent | 6e5820311cca68987d0fe6e50c95d4c9f4f5ce13 (diff) | |
| download | karakeep-e59fd98b43070898c594c35af1a0bbee604ad160.tar.zst | |
feat(import): new import details page (#2451)
* feat(import): new import details page
* fix typecheck
* review comments
Diffstat (limited to 'apps/web/components/settings/ImportSessionCard.tsx')
| -rw-r--r-- | apps/web/components/settings/ImportSessionCard.tsx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/web/components/settings/ImportSessionCard.tsx b/apps/web/components/settings/ImportSessionCard.tsx index f20710ca..f62a00dd 100644 --- a/apps/web/components/settings/ImportSessionCard.tsx +++ b/apps/web/components/settings/ImportSessionCard.tsx @@ -242,6 +242,12 @@ export function ImportSessionCard({ session }: ImportSessionCardProps) { {/* Actions */} <div className="flex items-center justify-end pt-2"> <div className="flex items-center gap-2"> + <Button variant="outline" size="sm" asChild> + <Link href={`/settings/import/${session.id}`}> + <ExternalLink className="mr-1 h-4 w-4" /> + {t("settings.import_sessions.view_details")} + </Link> + </Button> {canPause && ( <Button variant="outline" |
