diff options
| author | Kit La Touche <kit@transneptune.net> | 2024-11-03 21:43:00 -0500 |
|---|---|---|
| committer | Kit La Touche <kit@transneptune.net> | 2024-11-03 21:43:00 -0500 |
| commit | f38881f3253b3a128154ffd95655859e3dc629dc (patch) | |
| tree | e0b1eea57aa8b431aa83e2efc4577c12d3cc2b29 /ui/lib/components/Channel.svelte | |
| parent | 032bd28ee996e076bc8341704f74f062a2672645 (diff) | |
Run spaces-style prettier formatting
Diffstat (limited to 'ui/lib/components/Channel.svelte')
| -rw-r--r-- | ui/lib/components/Channel.svelte | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ui/lib/components/Channel.svelte b/ui/lib/components/Channel.svelte index fdc5d56..e84c6d0 100644 --- a/ui/lib/components/Channel.svelte +++ b/ui/lib/components/Channel.svelte @@ -1,10 +1,10 @@ <script> - let { id, name, active } = $props(); + let { id, name, active } = $props(); </script> <li class="rounded-full" class:bg-slate-400={active}> - <a href="/ch/{id}"> - <span class="badge bg-primary-500">#</span> - <span class="flex-auto">{name}</span> - </a> + <a href="/ch/{id}"> + <span class="badge bg-primary-500">#</span> + <span class="flex-auto">{name}</span> + </a> </li> |
