diff options
Diffstat (limited to 'src/data/composite/wiki-data/withConstitutedArtwork.js')
-rw-r--r-- | src/data/composite/wiki-data/withConstitutedArtwork.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/data/composite/wiki-data/withConstitutedArtwork.js b/src/data/composite/wiki-data/withConstitutedArtwork.js index ab3c45e0..44623450 100644 --- a/src/data/composite/wiki-data/withConstitutedArtwork.js +++ b/src/data/composite/wiki-data/withConstitutedArtwork.js @@ -7,10 +7,10 @@ export default templateCompositeFrom({ inputs: { dimensionsFromThingProperty: input({type: 'string', acceptsNull: true}), - fileExtensionFromThingProperty: input({type: 'string'}), - artistContribsFromThingProperty: input({type: 'string'}), - artistContribsArtistProperty: input({type: 'string'}), - dateFromThingProperty: input({type: 'string'}), + fileExtensionFromThingProperty: input({type: 'string', acceptsNull: true}), + artistContribsFromThingProperty: input({type: 'string', acceptsNull: true}), + artistContribsArtistProperty: input({type: 'string', acceptsNull: true}), + dateFromThingProperty: input({type: 'string', acceptsNull: true}), }, outputs: ['#constitutedArtwork'], |