Use initialValue rather than defaultValue for style definitions

This commit is contained in:
Andrew Kingston 2021-01-06 10:15:22 +00:00
parent 8b7c5226ca
commit 13134a8fea
1 changed files with 2 additions and 4 deletions

View File

@ -6,11 +6,9 @@
import {
readableToRuntimeBinding,
runtimeToReadableBinding,
CAPTURE_VAR_INSIDE_MUSTACHE,
} from "builderStore/replaceBindings"
import { DropdownMenu } from "@budibase/bbui"
import BindingDropdown from "components/userInterface/BindingDropdown.svelte"
import { onMount } from "svelte"
export let label = ""
export let bindable = true
@ -70,8 +68,8 @@
let temp = runtimeToReadableBinding(bindableProperties, value)
return value == null && props.defaultValue !== undefined
? props.defaultValue
return value == null && props.initialValue !== undefined
? props.initialValue
: temp
}