We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents df9db65 + 6a02479 commit c0b8068Copy full SHA for c0b8068
1 file changed
ui-ssr/src/components/feature/feature-card.tsx
@@ -162,6 +162,10 @@ export const FeatureCardCompactForEmbed = memo(
162
plain?: boolean
163
defaultVisibleRange?: number
164
}) => {
165
+ const isLorsa = feature.samples.some(
166
+ (s) => s.zPatternIndices && s.zPatternIndices.length > 0,
167
+ )
168
+
169
return (
170
<div
171
className={cn(
@@ -183,6 +187,11 @@ export const FeatureCardCompactForEmbed = memo(
183
187
No interpretation available
184
188
</p>
185
189
)}
190
+ {isLorsa && (
191
+ <p className="text-xs text-slate-400 mt-1">
192
+ Hover on top activations to see z-pattern
193
+ </p>
194
+ )}
186
195
</div>
196
<div className="flex items-center gap-2 shrink-0">
197
<span className="text-xs text-slate-500 font-medium tracking-wide">
0 commit comments