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 68cdaf5 commit 7a722e3Copy full SHA for 7a722e3
src/components/models/SchemaRow.astro
@@ -9,10 +9,11 @@ const { node, root } = Astro.props;
9
class={`py-2 !my-0 !list-none ${root ? "" : "border-l border-l-gray-200 dark:border-l-gray-500 pl-4"}`}
10
>
11
{
12
- node.title ? (
13
- <span class="mr-2 font-bold">{node.title}</span>
14
- ) : (
15
- <code class="mr-2 rounded-md bg-gray-100 !pr-0 font-mono">
+ (
+ <code
+ class="mr-2 rounded-md bg-gray-100 !pr-0 font-mono"
+ title={node.title}
16
+ >
17
{node.subpath[node.subpath.length - 1]}
18
{node.parent.fragment?.required?.includes(
19
node.subpath[node.subpath.length - 1],
0 commit comments