Derive safe array-like value as the default value for multi-select fields

This commit is contained in:
Andrew Kingston 2022-01-18 13:19:41 +00:00 committed by mike12345567
parent ea6b286609
commit 81479b18f3
1 changed files with 12 additions and 1 deletions

View File

@ -19,6 +19,7 @@
let fieldApi let fieldApi
let fieldSchema let fieldSchema
$: safeDefaultValue = getSafeDefaultValue(defaultValue)
$: flatOptions = optionsSource == null || optionsSource === "schema" $: flatOptions = optionsSource == null || optionsSource === "schema"
$: options = getOptions( $: options = getOptions(
optionsSource, optionsSource,
@ -28,6 +29,16 @@
valueColumn, valueColumn,
customOptions customOptions
) )
const getSafeDefaultValue = value => {
if (value == null || value === "") {
return []
}
if (!Array.isArray(value)) {
return [value]
}
return value
}
</script> </script>
<Field <Field
@ -35,7 +46,7 @@
{label} {label}
{disabled} {disabled}
{validation} {validation}
{defaultValue} defaultValue={safeDefaultValue}
type="array" type="array"
bind:fieldState bind:fieldState
bind:fieldApi bind:fieldApi