mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
fixed bookmarks not showing on homepage (#1072)
This commit is contained in:
parent
463c850fc4
commit
b79385bbcf
@ -163,7 +163,7 @@ export async function getAssetsFromDidList(
|
|||||||
|
|
||||||
const baseParams = {
|
const baseParams = {
|
||||||
chainIds: chainIds,
|
chainIds: chainIds,
|
||||||
filters: [getFilterTerm('id', didList)],
|
filters: [getFilterTerm('_id', didList)],
|
||||||
ignorePurgatory: true
|
ignorePurgatory: true
|
||||||
} as BaseQueryParams
|
} as BaseQueryParams
|
||||||
const query = generateBaseQuery(baseParams)
|
const query = generateBaseQuery(baseParams)
|
||||||
@ -185,7 +185,7 @@ export async function retrieveDDOListByDIDs(
|
|||||||
const orderedDDOListByDIDList: Asset[] = []
|
const orderedDDOListByDIDList: Asset[] = []
|
||||||
const baseQueryparams = {
|
const baseQueryparams = {
|
||||||
chainIds,
|
chainIds,
|
||||||
filters: [getFilterTerm('id', didList)],
|
filters: [getFilterTerm('_id', didList)],
|
||||||
ignorePurgatory: true
|
ignorePurgatory: true
|
||||||
} as BaseQueryParams
|
} as BaseQueryParams
|
||||||
const query = generateBaseQuery(baseQueryparams)
|
const query = generateBaseQuery(baseQueryparams)
|
||||||
@ -339,7 +339,7 @@ export async function getDownloadAssets(
|
|||||||
const baseQueryparams = {
|
const baseQueryparams = {
|
||||||
chainIds,
|
chainIds,
|
||||||
filters: [
|
filters: [
|
||||||
getFilterTerm('id', didList),
|
getFilterTerm('_id', didList),
|
||||||
getFilterTerm('service.type', 'access')
|
getFilterTerm('service.type', 'access')
|
||||||
]
|
]
|
||||||
} as BaseQueryParams
|
} as BaseQueryParams
|
||||||
|
Loading…
Reference in New Issue
Block a user