We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1eed2d5 commit c68938eCopy full SHA for c68938e
1 file changed
src/components/map-projects/MapProject.jsx
@@ -2603,14 +2603,15 @@ const MapProject = () => {
2603
return permissionDenied ? <Error403/> : (
2604
<div className='col-xs-12 padding-0' style={{borderRadius: '10px', width: 'calc(100vw - 32px)'}}>
2605
{
2606
- Boolean(repoVersion?.url) &&
+ Boolean(repoVersion?.url) && mappedSources.length &&
2607
<BridgeMatch
2608
service={getMatchAPIService()}
2609
repo={repoVersion}
2610
bridgeRepoURL='/orgs/CIEL/sources/CIEL/'
2611
limit={CANDIDATES_LIMIT}
2612
user={user}
2613
ref={bridgeRef}
2614
+ mappedRepoURLs={mappedSources.map(source => source.url)}
2615
/>
2616
}
2617
0 commit comments