We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8c06db commit 03259e2Copy full SHA for 03259e2
1 file changed
src/components/Quickfix.tsx
@@ -139,10 +139,9 @@ const Quickfix: FunctionComponent<{ vuln: DetailedDependencyVulnDTO }> = ({
139
</span>
140
<span> by upgrading from: </span>
141
<span className="flex flex-row gap-2">
142
- <Badge
143
- className="font-mono"
144
- variant={"outline"}
145
- >{`${name + "@" + version}`}</Badge>
+ <Badge className="font-mono" variant={"outline"}>
+ {beautifyPurl(vulnerabilityPath)}
+ </Badge>
146
<ArrowRight className="w-4" />
147
<Badge
148
variant={"outline"}
0 commit comments