Skip to content

Commit 4b5a511

Browse files
fix: dialog content warning (#831)
fixes AGE-873
1 parent 51f5349 commit 4b5a511

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.changeset/dark-impalas-sin.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"dashboard": patch
3+
---
4+
5+
fix: logs page dialog content warning

client/dashboard/src/pages/logs/LogDetailSheet.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Badge } from "@/components/ui/badge";
2-
import { Sheet, SheetContent } from "@/components/ui/sheet";
2+
import { Sheet, SheetContent, SheetTitle } from "@/components/ui/sheet";
33
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs";
44
import { HTTPToolLog } from "@gram/client/models/components";
55
import { CheckIcon, Copy, XIcon } from "lucide-react";
@@ -45,9 +45,9 @@ export function LogDetailSheet({
4545
<ToolIcon className="size-5 shrink-0" strokeWidth={1.5} />
4646
);
4747
})()}
48-
<h2 className="text-2xl font-light tracking-tight">
48+
<SheetTitle className="text-2xl font-light tracking-tight">
4949
{getToolNameFromUrn(log.toolUrn)}
50-
</h2>
50+
</SheetTitle>
5151
<div className="flex items-center justify-center rounded-full size-6">
5252
<StatusIcon isSuccess={isSuccessfulCall(log)} />
5353
</div>

0 commit comments

Comments
 (0)