• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

decentraland / marketplace / 6455038175

09 Oct 2023 09:54AM UTC coverage: 39.453% (-0.7%) from 40.103%
6455038175

Pull #2030

github

juanmahidalgo
fix: tracking not triggering correctly for creators
Pull Request #2030: Feat: new search bar component

2190 of 6949 branches covered (0.0%)

Branch coverage included in aggregate %.

206 of 206 new or added lines in 19 files covered. (100.0%)

4134 of 9080 relevant lines covered (45.53%)

16.07 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

50.0
/webapp/src/components/AssetTopbar/SearchBarDropdown/CollectionResultRow/CollectionResultRow.tsx
1
import { Profile } from 'decentraland-dapps/dist/containers'
2
import { BuilderCollectionAttributes } from '../../../../modules/vendor/decentraland/builder/types'
3
import CollectionImage from '../../../CollectionImage'
4
import styles from './CollectionResultRow.module.css'
5

6
type CollectionResultRowProps = {
7
  collection: BuilderCollectionAttributes
8
  onClick: () => void
9
}
10

11
const CollectionResultRow = ({
1✔
12
  collection,
13
  onClick
14
}: CollectionResultRowProps) => {
15
  return (
×
16
    <div className={styles.collectionRowContainer} onClick={onClick}>
17
      <div className={styles.image}>
18
        <CollectionImage contractAddress={collection.contract_address} />
19
      </div>
20
      <div className={styles.itemDataContainer}>
21
        <span className={styles.collectionName}>{collection.name}</span>
22
        <span className={styles.creator}>
23
          <Profile address={collection.eth_address} textOnly />
24
        </span>
25
      </div>
26
    </div>
27
  )
28
}
29

30
export default CollectionResultRow
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc