1
0
Fork 0
mirror of synced 2024-09-11 23:16:00 +12:00

removing uneeded log

This commit is contained in:
Peter Clement 2022-02-08 15:23:37 +00:00
parent b081302f17
commit 4a02d36cd0

View file

@ -36,15 +36,12 @@
}) })
} }
$: currentAutomation = $automationStore.selectedAutomation.automation
$: console.log(currentAutomation)
const onChangeTable = e => { const onChangeTable = e => {
value["tableId"] = e.detail value["tableId"] = e.detail
dispatch("change", value) dispatch("change", value)
} }
const coerce = (value, type) => { const coerce = (value, type) => {
console.log(type)
if (type === "boolean") { if (type === "boolean") {
return value === "true" return value === "true"
} }