From c333fcec32b1f90bf0da6bb14d2609c20e38a74f Mon Sep 17 00:00:00 2001 From: Adam Malczewski Date: Fri, 26 Jun 2026 22:21:55 +0900 Subject: style: switch from tabs to 2-space indentation (incl. svelte) --- src/components/Table.svelte | 74 ++++++++++++++++++++++----------------------- 1 file changed, 37 insertions(+), 37 deletions(-) (limited to 'src/components/Table.svelte') diff --git a/src/components/Table.svelte b/src/components/Table.svelte index 7c56e69..b6f5c5a 100644 --- a/src/components/Table.svelte +++ b/src/components/Table.svelte @@ -1,42 +1,42 @@
- - - - {#each columns as col, i (i)} - - {/each} - - - - {#if rows.length === 0} - - - - {:else} - {#each rows as row, r (r)} - - {#each row as cell, c (c)} - - {/each} - - {/each} - {/if} - -
{col}
{empty}
{cell}
+ + + + {#each columns as col, i (i)} + + {/each} + + + + {#if rows.length === 0} + + + + {:else} + {#each rows as row, r (r)} + + {#each row as cell, c (c)} + + {/each} + + {/each} + {/if} + +
{col}
{empty}
{cell}
-- cgit v1.2.3