We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49b5110 commit dce30deCopy full SHA for dce30de
1 file changed
refine-nextjs/plugins/shadcn-example/src/app/categories/show/[id]/page.tsx
@@ -36,15 +36,15 @@ export default function CategoryShow() {
36
<ShowView>
37
<Card>
38
<CardHeader>
39
- <CardTitle>{result?.title}</CardTitle>
40
- <CardDescription>Category ID: {result?.id}</CardDescription>
+ <CardTitle>{record?.title}</CardTitle>
+ <CardDescription>Category ID: {record?.id}</CardDescription>
41
</CardHeader>
42
<CardContent>
43
<div className="space-y-4">
44
<div>
45
<h4 className="text-sm font-medium mb-2">Title</h4>
46
<p className="text-sm text-muted-foreground">
47
- {result?.title || "-"}
+ {record?.title || "-"}
48
</p>
49
</div>
50
0 commit comments