diff options
Diffstat (limited to 'src/data/composite/wiki-properties')
-rw-r--r-- | src/data/composite/wiki-properties/constitutibleArtwork.js | 8 | ||||
-rw-r--r-- | src/data/composite/wiki-properties/constitutibleArtworkList.js | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/data/composite/wiki-properties/constitutibleArtwork.js b/src/data/composite/wiki-properties/constitutibleArtwork.js index 870e44c7..9f7ba13e 100644 --- a/src/data/composite/wiki-properties/constitutibleArtwork.js +++ b/src/data/composite/wiki-properties/constitutibleArtwork.js @@ -18,10 +18,10 @@ const template = 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}), }, steps: () => [ diff --git a/src/data/composite/wiki-properties/constitutibleArtworkList.js b/src/data/composite/wiki-properties/constitutibleArtworkList.js index 6a48cba8..29e6c774 100644 --- a/src/data/composite/wiki-properties/constitutibleArtworkList.js +++ b/src/data/composite/wiki-properties/constitutibleArtworkList.js @@ -17,10 +17,10 @@ const template = 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}), }, steps: () => [ |