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

Use real schema for datatable rather than first row's keys

This commit is contained in:
Andrew Kingston 2020-10-06 16:39:24 +01:00
parent 11c4f237d3
commit e91b62ef2e

View file

@ -42,7 +42,7 @@
data = await fetchData(datasource) data = await fetchData(datasource)
if (data && data.length) { if (data && data.length) {
await fetchModel(data[0].modelId) await fetchModel(data[0].modelId)
headers = Object.keys(data[0]).filter(shouldDisplayField) headers = Object.keys(schema).filter(shouldDisplayField)
} }
} }
}) })
@ -71,6 +71,8 @@
direction: "asc", direction: "asc",
} }
} }
$: console.log(headers)
</script> </script>
<table use:cssVars={cssVariables}> <table use:cssVars={cssVariables}>