Skip to content

Commit

Permalink
fix: fix widget table
Browse files Browse the repository at this point in the history
  • Loading branch information
nichenqin committed Oct 21, 2024
1 parent 370970b commit b1f002c
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,14 @@
{#if $widgets.length}
<div class="flex-1 space-y-3 overflow-y-auto" bind:this={widgetsContainer}>
{#each $widgets as widget}
<Widget {shareId} {widget} viewId={$view.id.value} tableId={$table.id.value} class="h-[180px]" />
<Widget
table={$table}
{shareId}
{widget}
viewId={$view.id.value}
tableId={$table.id.value}
class="h-[180px]"
/>
{/each}
</div>
{:else}
Expand Down

0 comments on commit b1f002c

Please sign in to comment.