Tidyup - remove logs
This commit is contained in:
parent
7952fab97a
commit
03bf7c787a
|
@ -59,7 +59,6 @@
|
|||
onMount(async () => {
|
||||
if (!isEmpty(datasource)) {
|
||||
data = await fetchData(datasource)
|
||||
console.log("DATA", data)
|
||||
|
||||
if (schemaIsValid()) {
|
||||
chartContainer = select(`.${chartClass}`)
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue