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/features/workspaces/ui/WorkspacesHome.svelte | 165 ++++++++++++----------- 1 file changed, 85 insertions(+), 80 deletions(-) (limited to 'src/features/workspaces/ui/WorkspacesHome.svelte') diff --git a/src/features/workspaces/ui/WorkspacesHome.svelte b/src/features/workspaces/ui/WorkspacesHome.svelte index bdfd023..02e92b4 100644 --- a/src/features/workspaces/ui/WorkspacesHome.svelte +++ b/src/features/workspaces/ui/WorkspacesHome.svelte @@ -1,92 +1,97 @@
-
-

Workspaces

- { - e.preventDefault(); - onNavigate("/default"); - }} - > - Default - -
+
+

Workspaces

+ { + e.preventDefault(); + onNavigate("/default"); + }} + > + Default + +
-
{ - e.preventDefault(); - createWorkspace(); - }} - > -
- - -
- -
- {#if slugError} -

{slugError}

- {/if} +
{ + e.preventDefault(); + createWorkspace(); + }} + > +
+ + +
+ +
+ {#if slugError} +

{slugError}

+ {/if} -
- {#if store.loading && store.list.length === 0} -
- -
- {:else if store.list.length === 0} -

- No workspaces yet. Create one above or visit /your-name in the URL. -

- {:else} -
    - {#each store.list as ws (ws.id)} - - {/each} -
- {/if} -
+
+ {#if store.loading && store.list.length === 0} +
+ +
+ {:else if store.list.length === 0} +

+ No workspaces yet. Create one above or visit /your-name in the URL. +

+ {:else} +
    + {#each store.list as ws (ws.id)} + + {/each} +
+ {/if} +
-- cgit v1.2.3