Fix errors being thrown by grid and table
This commit is contained in:
parent
59174c4c1a
commit
53bbbd2b04
|
@ -44,7 +44,7 @@
|
|||
}
|
||||
|
||||
onMount(async () => {
|
||||
if (datasource != null) {
|
||||
if (!isEmpty(datasource)) {
|
||||
data = await fetchData(datasource, $store)
|
||||
let schema = {}
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
export let color
|
||||
export let stripeColor
|
||||
export let borderColor
|
||||
export let datasource = {}
|
||||
export let datasource
|
||||
export let _bb
|
||||
|
||||
let data = []
|
||||
|
|
Loading…
Reference in New Issue