소스 검색

fix: filter empty marketplace collection (#18511)

tags/1.3.0
zxhlyh 6 달 전
부모
커밋
d43b884c2a
No account linked to committer's email address
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3
    1
      web/app/components/plugins/marketplace/list/list-with-collection.tsx

+ 3
- 1
web/app/components/plugins/marketplace/list/list-with-collection.tsx 파일 보기

@@ -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…
취소
저장