We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 042e36d commit a416e91Copy full SHA for a416e91
2 files changed
workspaces/marketplace/.changeset/twelve-paws-melt.md
@@ -0,0 +1,5 @@
1
+---
2
+'@red-hat-developer-hub/backstage-plugin-marketplace': patch
3
4
+
5
+Fixed filter function of clicking catalog tag on a plugin card.
workspaces/marketplace/plugins/marketplace/src/components/PluginCard.tsx
@@ -191,10 +191,7 @@ export const PluginCard = ({ plugin }: { plugin: MarketplacePlugin }) => {
191
>
192
<CategoryLinkButton
193
categoryName={plugin.spec.categories[0]}
194
- to={withFilter(
195
- 'spec.categories',
196
- plugin.spec.categories[0],
197
- )}
+ to={withFilter('category', plugin.spec.categories[0])}
198
onClick={e => e.stopPropagation()}
199
/>
200
</Typography>
0 commit comments