Adv item search: fix mapped properties not working
This commit is contained in:
parent
761d934b70
commit
40c2865a10
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ const itemQueryProps = (function() {
|
|||
function map(names, comps, outType, f) {
|
||||
return prop(names, outType, (i, ie) => {
|
||||
const args = [];
|
||||
for (let k = 0; k < comps.length; k++) args.push(comps[k](i, ie));
|
||||
for (let k = 0; k < comps.length; k++) args.push(comps[k].resolve(i, ie));
|
||||
return f.apply(null, args);
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue