@@ -40,7 +40,9 @@ export function NodeCard({
4040 className = "h-4 w-4 text-blue-500 shrink-0"
4141 />
4242 < CardTitle className = "text-base font-semibold leading-tight truncate" >
43- { highlightMatch ? highlightMatch ( nodeType . name , searchQuery ) : nodeType . name }
43+ { highlightMatch
44+ ? highlightMatch ( nodeType . name , searchQuery )
45+ : nodeType . name }
4446 </ CardTitle >
4547 { nodeType . tags . map ( ( tag , index ) => (
4648 < Badge
@@ -57,7 +59,9 @@ export function NodeCard({
5759 { nodeType . description && (
5860 < div className = "hidden md:block flex-1 min-w-0" >
5961 < p className = "text-sm text-muted-foreground leading-relaxed truncate" >
60- { highlightMatch ? highlightMatch ( nodeType . description , searchQuery ) : nodeType . description }
62+ { highlightMatch
63+ ? highlightMatch ( nodeType . description , searchQuery )
64+ : nodeType . description }
6165 </ p >
6266 </ div >
6367 ) }
@@ -100,7 +104,9 @@ export function NodeCard({
100104 className = "h-4 w-4 text-blue-500 shrink-0"
101105 />
102106 < CardTitle className = "text-base font-semibold leading-tight truncate" >
103- { highlightMatch ? highlightMatch ( nodeType . name , searchQuery ) : nodeType . name }
107+ { highlightMatch
108+ ? highlightMatch ( nodeType . name , searchQuery )
109+ : nodeType . name }
104110 </ CardTitle >
105111 </ div >
106112 < NodeTags
@@ -112,7 +118,9 @@ export function NodeCard({
112118 < CardContent className = "pt-0" >
113119 { nodeType . description && (
114120 < p className = "text-sm text-muted-foreground leading-relaxed max-h-16 overflow-hidden" >
115- { highlightMatch ? highlightMatch ( nodeType . description , searchQuery ) : nodeType . description }
121+ { highlightMatch
122+ ? highlightMatch ( nodeType . description , searchQuery )
123+ : nodeType . description }
116124 </ p >
117125 ) }
118126 { nodeType . compatibility && nodeType . compatibility . length > 0 && (
0 commit comments