1
0
Fork 0
mirror of synced 2024-10-03 02:27:06 +13:00

Tidyup - remove logs

This commit is contained in:
cmack 2020-08-27 10:08:42 +01:00
parent 7952fab97a
commit 03bf7c787a
2 changed files with 1 additions and 2 deletions

View file

@ -59,7 +59,6 @@
onMount(async () => { onMount(async () => {
if (!isEmpty(datasource)) { if (!isEmpty(datasource)) {
data = await fetchData(datasource) data = await fetchData(datasource)
console.log("DATA", data)
if (schemaIsValid()) { if (schemaIsValid()) {
chartContainer = select(`.${chartClass}`) chartContainer = select(`.${chartClass}`)

View file

@ -66,7 +66,7 @@
onMount(async () => { onMount(async () => {
if (!isEmpty(datasource)) { if (!isEmpty(datasource)) {
data = await getAndPrepareData() data = await getAndPrepareData()
console.log("DATA", data)
if (data.dataByTopic.length > 0) { if (data.dataByTopic.length > 0) {
chartContainer = select(`.${chartClass}`) chartContainer = select(`.${chartClass}`)
bindChartUIProps() bindChartUIProps()