1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00

fix pool share links (#220)

This commit is contained in:
Matthias Kretschmann 2020-11-06 16:56:22 +01:00 committed by GitHub
parent 66984a575a
commit d47fd97536
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,13 @@ const columns = [
selector: function getAssetRow(row: Asset) {
const { attributes } = row.ddo.findServiceByType('metadata')
const { owner } = row.ddo.publicKey[0]
return <AssetTitle title={attributes.main.name} owner={owner} />
return (
<AssetTitle
did={row.ddo.id}
title={attributes.main.name}
owner={owner}
/>
)
},
grow: 2
},