chore: small fixes

This commit is contained in:
Nicolas Meienberger
2025-11-09 12:34:12 +01:00
parent 4b981bdcac
commit 2ec8d4c1dd
2 changed files with 3 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
** *
!turbo.json !turbo.json
!bun.lock !bun.lock
@@ -20,11 +20,7 @@
!packages/**/src/** !packages/**/src/**
# License files and attributions # License files and attributions
!LICENSE !LICENSE
!NOTICES.md !NOTICES.md
!LICENSES/** !LICENSES/**
# Node modules
**/node_modules/**

View File

@@ -73,7 +73,7 @@ export default function SnapshotDetailsPage({ loaderData }: Route.ComponentProps
</div> </div>
<div> <div>
<span className="text-muted-foreground">Short ID:</span> <span className="text-muted-foreground">Short ID:</span>
<p className="font-mono break-al">{data.snapshot.short_id}</p> <p className="font-mono break-all">{data.snapshot.short_id}</p>
</div> </div>
<div> <div>
<span className="text-muted-foreground">Hostname:</span> <span className="text-muted-foreground">Hostname:</span>
@@ -87,7 +87,7 @@ export default function SnapshotDetailsPage({ loaderData }: Route.ComponentProps
<span className="text-muted-foreground">Paths:</span> <span className="text-muted-foreground">Paths:</span>
<div className="space-y-1 mt-1"> <div className="space-y-1 mt-1">
{data.snapshot.paths.map((path) => ( {data.snapshot.paths.map((path) => (
<p key={path} className="font-mono text-xs bg-muted px-2 py-1 rounded"> <p key={path} className="font-mono text-xs bg-muted px-2 py-1 rounded break-all">
{path} {path}
</p> </p>
))} ))}