remove log
This commit is contained in:
parent
3d222a62f9
commit
b5824794b6
|
@ -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">
|
||||||
|
|
Loading…
Reference in New Issue