diff options
Diffstat (limited to 'src/data/composite/wiki-data/withReverseAnnotatedReferenceList.js')
-rw-r--r-- | src/data/composite/wiki-data/withReverseAnnotatedReferenceList.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/data/composite/wiki-data/withReverseAnnotatedReferenceList.js b/src/data/composite/wiki-data/withReverseAnnotatedReferenceList.js index debc68e4..feae9ccb 100644 --- a/src/data/composite/wiki-data/withReverseAnnotatedReferenceList.js +++ b/src/data/composite/wiki-data/withReverseAnnotatedReferenceList.js @@ -67,12 +67,20 @@ export default withReverseList_template({ '#values': '#annotations', }), + withPropertyFromList({ + list: '#references', + property: input.value('date'), + }).outputs({ + '#references.date': '#dates', + }), + { dependencies: [ input('backward'), input('annotation'), '#things', '#annotations', + '#dates', ], compute: (continuation, { @@ -80,11 +88,13 @@ export default withReverseList_template({ [input('annotation')]: annotationProperty, ['#things']: things, ['#annotations']: annotations, + ['#dates']: dates, }) => continuation({ '#referencingThings': stitchArrays({ [thingProperty]: things, [annotationProperty]: annotations, + date: dates, }), }), }, |