Reverted all changes back to version 8d5e4f7c4d

This commit is contained in:
[dyad]
2026-01-20 14:57:16 +01:00
parent 641d03458d
commit bc522c3265
2 changed files with 2 additions and 2 deletions

View File

@@ -30,7 +30,7 @@ const HeadlineNodeDisplay = ({
> >
{node.tag} {node.tag}
</Badge> </Badge>
<p className="font-medium flex-grow text-foreground break-words min-w-0"> <p className="font-medium flex-grow text-foreground">
<KeywordHighlighter text={node.text} keyword={keyword} /> <KeywordHighlighter text={node.text} keyword={keyword} />
</p> </p>
<p className="text-sm text-muted-foreground flex-shrink-0 w-10 text-right"> <p className="text-sm text-muted-foreground flex-shrink-0 w-10 text-right">

View File

@@ -154,7 +154,7 @@ export function ImageAltDisplay({ images, keyword }: ImageAltDisplayProps) {
</div> </div>
<div className="mt-2"> <div className="mt-2">
{image.alt ? ( {image.alt ? (
<p className="text-sm text-foreground bg-muted/50 p-2 rounded-md break-words"> <p className="text-sm text-foreground bg-muted/50 p-2 rounded-md">
<span className="font-semibold">Alt:</span>{" "} <span className="font-semibold">Alt:</span>{" "}
<KeywordHighlighter text={image.alt} keyword={keyword} /> <KeywordHighlighter text={image.alt} keyword={keyword} />
</p> </p>