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

decentraland / marketplace / 6406006443

04 Oct 2023 12:31PM UTC coverage: 39.49% (-0.6%) from 40.103%
6406006443

Pull #2030

github

juanmahidalgo
feat: add overflow: visible for mobile
Pull Request #2030: Feat: new search bar component

2195 of 6955 branches covered (0.0%)

Branch coverage included in aggregate %.

198 of 198 new or added lines in 14 files covered. (100.0%)

4140 of 9087 relevant lines covered (45.56%)

16.04 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