We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96a1186 commit 36b1608Copy full SHA for 36b1608
widgets/src/_standalone/ProcessOverview/index.svelte
@@ -8,7 +8,7 @@
8
import Pagination from './Pagination.svelte';
9
import FilterByFailed from './FilterByFailed.svelte';
10
11
- const { page_size, data_url } = config;
+ const { page_size = '10', data_url } = config;
12
13
let error: boolean = $state(false);
14
let filters: Column[] | null = $state(null);
widgets/src/lib/Table.svelte
@@ -43,7 +43,7 @@
43
class="hover:bg-neutral-300 dark:hover:bg-gray-800 border-b border-neutral-300 dark:border-neutral-800"
44
>
45
{#each row as cell, i}
46
- {#if cell.status}
+ {#if 'step' === cell.type}
47
<TableCell
48
{cell}
49
{row}
0 commit comments