forked from coracle/flotilla
12 lines
237 B
Svelte
12 lines
237 B
Svelte
<script lang="ts">
|
|
import {GENERAL, channelsById, makeChannelId} from "@app/state"
|
|
|
|
const {url, room} = $props()
|
|
</script>
|
|
|
|
{#if room === GENERAL}
|
|
general
|
|
{:else}
|
|
{$channelsById.get(makeChannelId(url, room))?.name || room}
|
|
{/if}
|