remove log

This commit is contained in:
Peter Clement 2021-10-19 09:51:40 +01:00
parent 3d222a62f9
commit b5824794b6
1 changed files with 0 additions and 2 deletions

View File

@ -16,7 +16,6 @@
} }
const onChange = (e, field) => { const onChange = (e, field) => {
console.log(field)
value[field.name] = e.detail value[field.name] = e.detail
dispatch("change", value) dispatch("change", value)
} }
@ -27,7 +26,6 @@
// Ensure any nullish queryId values get set to empty string so // Ensure any nullish queryId values get set to empty string so
// that the select works // that the select works
$: if (value?.queryId == null) value = { queryId: "" } $: if (value?.queryId == null) value = { queryId: "" }
$: console.log(value)
</script> </script>
<div class="block-field"> <div class="block-field">