mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-07 00:01:49 +00:00
fix table when empty rows
This commit is contained in:
@@ -165,7 +165,7 @@
|
||||
}
|
||||
|
||||
const headers = Array.from(
|
||||
new Set(result.flatMap((row) => (typeof row == 'object' ? Object.keys(row) : [])))
|
||||
new Set(result.flatMap((row) => (typeof row == 'object' ? Object.keys(row ?? {}) : [])))
|
||||
)
|
||||
|
||||
$options = {
|
||||
|
||||
@@ -119,7 +119,6 @@
|
||||
appStore.subscribe(loadTheme)
|
||||
|
||||
async function loadTheme(currentAppStore: App) {
|
||||
console.log(currentAppStore)
|
||||
if (!currentAppStore.theme) {
|
||||
return
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user