mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
* fix(data-table-skeleton): every row should animate text #734 Fixes #734 * fix(data-table-skeleton): revert unkeyed each
This commit is contained in:
parent
f31ab25e0a
commit
19dbad1f76
1 changed files with 2 additions and 7 deletions
|
@ -86,15 +86,10 @@
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
{#each Array.from({ length: rows }, (_, i) => i) as row (row)}
|
||||||
{#each cols as col (col)}
|
|
||||||
<td><span></span></td>
|
|
||||||
{/each}
|
|
||||||
</tr>
|
|
||||||
{#each Array.from({ length: rows - 1 }, (_, i) => i) as row (row)}
|
|
||||||
<tr>
|
<tr>
|
||||||
{#each cols as col (col)}
|
{#each cols as col (col)}
|
||||||
<td></td>
|
<td><span></span></td>
|
||||||
{/each}
|
{/each}
|
||||||
</tr>
|
</tr>
|
||||||
{/each}
|
{/each}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue