aboutsummaryrefslogtreecommitdiffstats
path: root/app/javascript/helpers/CustomFieldsInputs.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/helpers/CustomFieldsInputs.js')
-rw-r--r--app/javascript/helpers/CustomFieldsInputs.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/helpers/CustomFieldsInputs.js b/app/javascript/helpers/CustomFieldsInputs.js
index 0a57e7566..93611538e 100644
--- a/app/javascript/helpers/CustomFieldsInputs.js
+++ b/app/javascript/helpers/CustomFieldsInputs.js
@@ -43,7 +43,7 @@ export default class CustomFieldsInputs extends Component {
ref={'custom_fields.' + cf.code}
className='form-control'
disabled={this.props.disabled}
- value={cf.value || this.options(cf).default}
+ value={cf.value || this.options(cf).default || ""}
onChange={(e) => {this.props.onUpdate(cf.code, e.target.value); this.forceUpdate()} }
/>
)
@@ -56,7 +56,7 @@ export default class CustomFieldsInputs extends Component {
ref={'custom_fields.' + cf.code}
className='form-control'
disabled={this.props.disabled}
- value={cf.value || this.options(cf).default}
+ value={cf.value || this.options(cf).default || ""}
onChange={(e) => {this.props.onUpdate(cf.code, e.target.value); this.forceUpdate()} }
/>
)