Files
flotilla/src/app/components/ChannelName.svelte
T
2024-12-09 17:06:07 -08:00

13 lines
241 B
Svelte

<script lang="ts">
import {GENERAL, channelsById, makeChannelId} from "@app/state"
export let url
export let room
</script>
{#if room === GENERAL}
general
{:else}
{$channelsById.get(makeChannelId(url, room))?.name || room}
{/if}