Skip to content

Commit 07856b2

Browse files
authored
Fix broken table "With Multiple Branches" storybook (#4722)
1 parent 0d38a83 commit 07856b2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

webview/src/stories/Table.stories.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,8 @@ WithMultipleBranches.args = {
366366
tableData: getTableState({
367367
...survivalTableData,
368368
rows: [
369-
...survivalTableData.rows.map(row => ({
369+
survivalTableData.rows[0],
370+
...rowsWithoutWorkspace.map(row => ({
370371
...row,
371372
branch: branches[0],
372373
subRows: row.subRows?.map(subRow => ({

0 commit comments

Comments
 (0)