Ensure placeholder is null when undefined so avoid sometimes having a placeholder and sometimes not
This commit is contained in:
parent
2496dd6f14
commit
a2e4f44e7f
|
@ -71,7 +71,7 @@
|
|||
/>
|
||||
{/if}
|
||||
{#if settings && settings.length > 0}
|
||||
{#each settings as setting}
|
||||
{#each settings as setting (setting.key)}
|
||||
{#if canRenderControl(setting)}
|
||||
<PropertyControl
|
||||
type={setting.type}
|
||||
|
@ -83,8 +83,8 @@
|
|||
{componentInstance}
|
||||
onChange={val => updateProp(setting.key, val)}
|
||||
props={{
|
||||
options: setting.options,
|
||||
placeholder: setting.placeholder,
|
||||
options: setting.options || [],
|
||||
placeholder: setting.placeholder || null,
|
||||
}}
|
||||
{bindings}
|
||||
{componentDefinition}
|
||||
|
|
Loading…
Reference in New Issue