diff --git a/frontend/src/lib/components/DefaultScripts.svelte b/frontend/src/lib/components/DefaultScripts.svelte index 1f0055d7e2..e178327ec5 100644 --- a/frontend/src/lib/components/DefaultScripts.svelte +++ b/frontend/src/lib/components/DefaultScripts.svelte @@ -23,6 +23,7 @@ startIcon={{ icon: SettingsIcon }} color="light" size="xs2" + btnClasses="!text-tertiary" variant="contained">defaults {/if} diff --git a/frontend/src/lib/components/FlowStatusViewerInner.svelte b/frontend/src/lib/components/FlowStatusViewerInner.svelte index cb7f47c649..6b2fbb0508 100644 --- a/frontend/src/lib/components/FlowStatusViewerInner.svelte +++ b/frontend/src/lib/components/FlowStatusViewerInner.svelte @@ -219,7 +219,6 @@ await loadJobInProgress() if (flowJobIds) { - console.log('flowJobIds', flowJobIds) let common = { iteration_from: Math.max(flowJobIds.flowJobs.length - 20, 0), iteration_total: flowJobIds?.length diff --git a/frontend/src/lib/components/table/AutoDataTable.svelte b/frontend/src/lib/components/table/AutoDataTable.svelte index 3995c8d6c1..9e553d6948 100644 --- a/frontend/src/lib/components/table/AutoDataTable.svelte +++ b/frontend/src/lib/components/table/AutoDataTable.svelte @@ -113,7 +113,7 @@ function isSortable(key: string) { return ( - (objects?.[0] != undefined && typeof objects[0][key] === 'string') || + (objects?.[0]?.[key] != undefined && typeof objects[0][key] === 'string') || typeof objects[0][key] === 'number' || typeof objects[0][key] === 'boolean' )