Skip to content

Commit 36b1608

Browse files
committed
Some changes and suggestions.
# Conflicts: # widgets/src/_standalone/ProcessOverview/Pagination.svelte
1 parent 96a1186 commit 36b1608

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

widgets/src/_standalone/ProcessOverview/index.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import Pagination from './Pagination.svelte';
99
import FilterByFailed from './FilterByFailed.svelte';
1010
11-
const { page_size, data_url } = config;
11+
const { page_size = '10', data_url } = config;
1212
1313
let error: boolean = $state(false);
1414
let filters: Column[] | null = $state(null);

widgets/src/lib/Table.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
class="hover:bg-neutral-300 dark:hover:bg-gray-800 border-b border-neutral-300 dark:border-neutral-800"
4444
>
4545
{#each row as cell, i}
46-
{#if cell.status}
46+
{#if 'step' === cell.type}
4747
<TableCell
4848
{cell}
4949
{row}

0 commit comments

Comments
 (0)