diff --git a/src/components/Widgets/SelectControl.js b/src/components/Widgets/SelectControl.js index 331567e31af4..195c2ab4f7c3 100644 --- a/src/components/Widgets/SelectControl.js +++ b/src/components/Widgets/SelectControl.js @@ -15,12 +15,15 @@ export default class SelectControl extends React.Component { return
Error rendering select control for {field.get('name')}: No options
; } - const options = fieldOptions.map((option) => { - if (typeof option === 'string') { - return { label: option, value: option }; - } - return option; - }); + const options = [ + ...(field.get('default', false) ? [] : [{ label: '', value: '' }]), + ...fieldOptions.map((option) => { + if (typeof option === 'string') { + return { label: option, value: option }; + } + return option; + }), + ]; return (