1
0
Fork 0
mirror of synced 2024-10-01 01:28:51 +13:00

Fix errors being thrown by grid and table

This commit is contained in:
Andrew Kingston 2020-10-14 09:34:23 +01:00
parent 59174c4c1a
commit 53bbbd2b04
2 changed files with 2 additions and 2 deletions

View file

@ -44,7 +44,7 @@
}
onMount(async () => {
if (datasource != null) {
if (!isEmpty(datasource)) {
data = await fetchData(datasource, $store)
let schema = {}

View file

@ -12,7 +12,7 @@
export let color
export let stripeColor
export let borderColor
export let datasource = {}
export let datasource
export let _bb
let data = []