Commit 26575c50 authored by rdavis's avatar rdavis
Browse files

Changed column header text to match property.

Removed debugging code.
parent 91d53530
......@@ -42,9 +42,6 @@
sortOrder = 'asc';
}
}
$: {
console.log(chats);
}
</script>
<Modal size="lg" bind:show>
......@@ -84,7 +81,7 @@
>
<tr>
<th scope="col" class="px-3 py-2 cursor-pointer select-none" on:click={() => setSortKey('title')}>
{$i18n.t('Name')}
{$i18n.t('Title')}
{#if sortKey === 'title'}
{sortOrder === 'asc' ? '▲' : '▼'}
{:else}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment