1
0
Fork 0
mirror of synced 2024-07-03 21:40:55 +12:00

#381: Events: param input not displaying value

This commit is contained in:
Michael Shanks 2020-06-24 15:55:40 +01:00
parent 1f89dd4b36
commit c8c50d1ee3

View file

@ -8,11 +8,17 @@
import { EVENT_TYPE_MEMBER_NAME } from "components/common/eventHandlers"
import { store, workflowStore } from "builderStore"
import { ArrowDownIcon } from "components/common/Icons/"
import { createEventDispatcher } from 'svelte'
export let parameter
let isOpen = false
$: {
let p = parameter
console.log(JSON.stringify(p))
}
const capitalize = s => {
if (typeof s !== "string") return ""
return s.charAt(0).toUpperCase() + s.slice(1)