diff options
Diffstat (limited to 'src/find-reverse.js')
-rw-r--r-- | src/find-reverse.js | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/src/find-reverse.js b/src/find-reverse.js index 1e897a5c..f31d3c45 100644 --- a/src/find-reverse.js +++ b/src/find-reverse.js @@ -108,20 +108,24 @@ export function bind(wikiData, opts1, { if (!spec.bindTo) continue; const behavior = prepareBehavior(spec); - const thingData = wikiData[spec.bindTo]; + + const data = + (spec.bindTo === 'wikiData' + ? wikiData + : wikiData[spec.bindTo]); bound[key] = (opts1 ? (ref, opts2) => (opts2 - ? behavior(ref, thingData, {...opts1, ...opts2}) - : behavior(ref, thingData, opts1)) + ? behavior(ref, data, {...opts1, ...opts2}) + : behavior(ref, data, opts1)) : (ref, opts2) => (opts2 - ? behavior(ref, thingData, opts2) - : behavior(ref, thingData))); + ? behavior(ref, data, opts2) + : behavior(ref, data))); - bound[key][boundData] = thingData; + bound[key][boundData] = data; bound[key][boundOptions] = opts1 ?? {}; } |