1
0
mirror of https://github.com/ascribe/onion.git synced 2025-01-03 10:25:08 +01:00

Change required prop for AD1251 changes

This commit is contained in:
Brett Sun 2015-11-03 10:49:06 +01:00
parent 68c1dd9407
commit 3a8f91e29e

View File

@ -134,7 +134,7 @@ let LumenusAdditionalDataForm = React.createClass({
rows={1} rows={1}
defaultValue={piece.extra_data.artist_bio} defaultValue={piece.extra_data.artist_bio}
placeholder={getLangText('Enter a biography of the artist...')} placeholder={getLangText('Enter a biography of the artist...')}
required="required"/> required />
</Property> </Property>
<Property <Property
name='work_description' name='work_description'
@ -143,7 +143,7 @@ let LumenusAdditionalDataForm = React.createClass({
rows={1} rows={1}
defaultValue={piece.extra_data.work_description} defaultValue={piece.extra_data.work_description}
placeholder={getLangText('Enter a description of the work...')} placeholder={getLangText('Enter a description of the work...')}
required="required"/> required />
</Property> </Property>
<Property <Property
name='tech_details' name='tech_details'
@ -152,7 +152,7 @@ let LumenusAdditionalDataForm = React.createClass({
rows={1} rows={1}
defaultValue={piece.extra_data.tech_details} defaultValue={piece.extra_data.tech_details}
placeholder={getLangText('Enter technological details about the work was produced...')} placeholder={getLangText('Enter technological details about the work was produced...')}
required="required"/> required />
</Property> </Property>
<Property <Property
name='display_instructions' name='display_instructions'
@ -161,7 +161,7 @@ let LumenusAdditionalDataForm = React.createClass({
rows={1} rows={1}
defaultValue={piece.extra_data.display_instructions} defaultValue={piece.extra_data.display_instructions}
placeholder={getLangText('Enter instructions on how to best display the work...')} placeholder={getLangText('Enter instructions on how to best display the work...')}
required="required"/> required />
</Property> </Property>
</Form> </Form>
); );