Kaynağa Gözat

fix: filter empty marketplace collection (#18511)

tags/1.3.0
zxhlyh 6 ay önce
ebeveyn
işleme
d43b884c2a
No account linked to committer's email address

+ 3
- 1
web/app/components/plugins/marketplace/list/list-with-collection.tsx Dosyayı Görüntüle

@@ -32,7 +32,9 @@ const ListWithCollection = ({
return (
<>
{
marketplaceCollections.map(collection => (
marketplaceCollections.filter((collection) => {
return marketplaceCollectionPluginsMap[collection.name]?.length
}).map(collection => (
<div
key={collection.name}
className='py-3'

Loading…
İptal
Kaydet