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,17 +86,12 @@
|
|||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{#each Array.from({ length: rows }, (_, i) => i) as row (row)}
|
||||
<tr>
|
||||
{#each cols as col (col)}
|
||||
<td><span></span></td>
|
||||
{/each}
|
||||
</tr>
|
||||
{#each Array.from({ length: rows - 1 }, (_, i) => i) as row (row)}
|
||||
<tr>
|
||||
{#each cols as col (col)}
|
||||
<td></td>
|
||||
{/each}
|
||||
</tr>
|
||||
{/each}
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue