1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12: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 () => {
if (!isEmpty(datasource)) {
data = await fetchData(datasource)
console.log("DATA", data)
if (schemaIsValid()) {
chartContainer = select(`.${chartClass}`)

View file

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