mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-13 12:55:19 +00:00
Changed column header text to match property.
Removed debugging code.
This commit is contained in:
parent
91d53530e6
commit
26575c5086
1 changed files with 1 additions and 4 deletions
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Reference in a new issue